From 41cde0d0c72a8de02f3c3a566cff74e5720d56f2 Mon Sep 17 00:00:00 2001 From: FujiZ Date: Sat, 14 Oct 2023 01:44:44 +0800 Subject: [PATCH] docs(readme): fix a typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 424c45a8b..c8e1d184b 100644 --- a/README.md +++ b/README.md @@ -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++