Skip to content
This repository was archived by the owner on Apr 23, 2023. It is now read-only.

Commit aaf876d

Browse files
author
Jack Tang
committed
update README.md
1 parent 0a03e00 commit aaf876d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ Simplify Nim Inter-Thread Communication
99
- Each thread processes its channel with `threadproxy.poll`.
1010
- JSON is the data exchange format.
1111
- Threads can talk with each other with `name` reference.
12-
- Threads can talk with each other in uni-directional with `send`.
13-
- Threads can talk with each other in two-directional way with `ask`.
12+
- Threads can talk with each other in one-way with `send()`.
13+
- Threads can talk with each other in two-way with `ask()`.
1414
- The order of creation of threads does not matter as long as the target thread is running at the time of calling `send` or `ask`.
1515

1616
## Usage
1717

18-
The general pattern should look like the following.
18+
The typical pattern should look like the following.
1919

2020
```nim
2121
import threadproxy

0 commit comments

Comments
 (0)