Skip to content

Commit a972419

Browse files
authored
Merge pull request #1130 from AlexandreArpin/feature/fix-mkdocs
Update mkdocs
2 parents 12044d5 + f885d7f commit a972419

File tree

5 files changed

+4
-3
lines changed

5 files changed

+4
-3
lines changed

docs/async-await.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ static void Main(string[] args)
5252
```
5353

5454
NetMQRuntime is a wrapper over NetMQPoller, when calling an async function the socket is automatically added to the internal poller.
55-
NetMQRuntime is also a NetMQScheduler and SyncrhonizationContext, so any awaited function is continuing on the runtime's thread.
55+
NetMQRuntime is also a NetMQScheduler and SynchronizationContext, so any awaited function is continuing on the runtime's thread.
5656

5757
NetMQSocket should still be used only within one thread.
5858

docs/poller.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For ZeroMQ/NetMQ to give great performance, some restrictions exist on how we ca
5959

6060
For example, consider socket A with a service loop in thread A, and socket B with a service loop in thread B. It would be invalid to receive a message from socket A (on thread A) and then attempt to send it on socket B. The socket is not threadsafe, and so attempts to use is simultaneously from threads A and B would cause errors.
6161

62-
In fact the pattern described here is known as a [proxy](proxy.md), and one is built into NetMQ. At this point you may not be surprised to learn that it is powered by a `NetMQPoller`.
62+
In fact the pattern described here is known as a proxy, and one is built into NetMQ. At this point you may not be surprised to learn that it is powered by a `NetMQPoller`.
6363

6464
## Example: ReceiveReady
6565

docs/scheduler.md

Whitespace-only changes.

docs/stream.md

Whitespace-only changes.

mkdocs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
site_name: NetMQ
22

3-
pages:
3+
nav:
44
- Home: index.md
55
- Introduction: introduction.md
66
- Concepts:
@@ -16,6 +16,7 @@ pages:
1616
- Timer: timer.md
1717
- Queue: queue.md
1818
- Proactor: proactor.md
19+
- Devices: devices.md
1920
- Patterns:
2021
- Request-Response: request-response.md
2122
- Pub-Sub: pub-sub.md

0 commit comments

Comments
 (0)