docs(readme): fix a typo in README

This commit is contained in:
FujiZ
2023-10-14 01:44:44 +08:00
committed by Songyuan Bai
parent 843c579402
commit 41cde0d0c7

View File

@@ -51,7 +51,7 @@ If it is omitted, the number of threads is automatically chosen and will not exc
UNISON resolved a lot of thread-safety issues with ns-3's architecture.
You don't need to consider these issues on your own for most of the time, except if you have custom global statistics other than the built-in flow-monitor.
In the letter case, if multiple nodes can access your global statistics, you can replace them with atomic variables via `std::atomic<>`.
In the latter case, if multiple nodes can access your global statistics, you can replace them with atomic variables via `std::atomic<>`.
For complex custom data structures, you can create critical sections by adding
```c++