Skip to content

Commit

Permalink
iox-eclipse-iceoryx#283 Fix past tense
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Hoinkis <[email protected]>
  • Loading branch information
mossmaurice committed Dec 20, 2020
1 parent 8b71097 commit 4ceda5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions iceoryx_examples/icedelivery/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ RouDi is ready for clients
### Publisher application
```
2020-12-20 16:05:01.837 [ Debug ]: Application registered management segment 0x7fd6d39e3000 with size 64244064 to id 1
Send {five,two} times value: (1, 1, 1)
Send {five,two} times value: (2, 2, 2)
Send {five,two} times value: (3, 3, 3)
Sent {five,two} times value: (1, 1, 1)
Sent {five,two} times value: (2, 2, 2)
Sent {five,two} times value: (3, 3, 3)
```

### Subscriber application (typed)
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_examples/icedelivery/iox_publisher_untyped.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ int main()
// Do something with error
});

std::cout << "Send two times value: (" << ct << ", " << ct << ", " << ct << ")" << std::endl;
std::cout << "Sent two times value: (" << ct << ", " << ct << ", " << ct << ")" << std::endl;

std::this_thread::sleep_for(std::chrono::seconds(1));
}
Expand Down

0 comments on commit 4ceda5e

Please sign in to comment.