From 78c4313666f086a7d6b1670a821cf25603529a69 Mon Sep 17 00:00:00 2001 From: Marten Lohstroh Date: Sun, 24 Sep 2023 23:35:33 -0700 Subject: [PATCH] Update README.md Fixed typo. --- examples/C/src/distributed/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/C/src/distributed/README.md b/examples/C/src/distributed/README.md index 0b93e042..102059fd 100644 --- a/examples/C/src/distributed/README.md +++ b/examples/C/src/distributed/README.md @@ -1,6 +1,6 @@ # Distributed Lingua Franca -When intead of a **main reactor** you defined a **federated reactor**, a Lingua Franca program gets divided into multiple programs that execute as separate processes and can execute on different machines. The coordination and communication is automatically generated to preserve LF semantics so that the programs will logically the same as a non-federated program. See [Distributed Execution documentation](https://www.lf-lang.org/docs/handbook/distributed-execution?target=c) for more details. +When intead of a **main reactor** you defined a **federated reactor**, a Lingua Franca program gets divided into multiple programs that execute as separate processes and can execute on different machines. The coordination and communication is automatically generated to preserve LF semantics so that the programs will logically behave the same as a non-federated program. See [Distributed Execution documentation](https://www.lf-lang.org/docs/handbook/distributed-execution?target=c) for more details. This directory includes a series of very simple "Hello World" examples.