From b211937b95f36b33631492b020ed56e575d74496 Mon Sep 17 00:00:00 2001 From: Sebastien Sikora Date: Tue, 30 Nov 2021 17:12:04 +0000 Subject: [PATCH] Updating README.md. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f1e3c0b..179c018 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ The server constructor will return once the communication channel is established Client parameters are passed to the child process via it's command-line arguments, therefore argc and argv must be passed to the SatTerm_Client constructor. -The parameters are appended directly onto the child binary path string passed to the server constructor following an automatically applied delimiter ("client_args"), so you can use any command-line arguments required by the child process as normal and client constructor will automatically parse the remaining arguments. +The parameters are appended directly onto the child binary path string passed to the server constructor following an automatically applied delimiter ("client_args"), so you can use any command-line arguments required by the child process as normal and the client constructor will automatically parse the remaining arguments.
```cpp @@ -220,7 +220,7 @@ int main(int argc, char *argv[]) { ```
-Compile server_demo.cpp and client_demo.cpp, run server_demo: +Compile `server_demo.cpp` and `client_demo.cpp`, run `server_demo`:
```