diff options
Diffstat (limited to 'lib/pure/concurrency')
-rw-r--r-- | lib/pure/concurrency/atomics.nim | 2 | ||||
-rw-r--r-- | lib/pure/concurrency/cpuinfo.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/concurrency/atomics.nim b/lib/pure/concurrency/atomics.nim index 32c37236f..83459425b 100644 --- a/lib/pure/concurrency/atomics.nim +++ b/lib/pure/concurrency/atomics.nim @@ -47,7 +47,7 @@ when defined(cpp) or defined(nimdoc): ## Behaves like Acquire when applied to load, like Release when ## applied to a store and like AcquireRelease when applied to a ## read-modify-write operation. - ## Also garantees that all threads observe the same total ordering + ## Also guarantees that all threads observe the same total ordering ## with other moSequentiallyConsistent operations. type diff --git a/lib/pure/concurrency/cpuinfo.nim b/lib/pure/concurrency/cpuinfo.nim index 6fc5eb95b..415b9a787 100644 --- a/lib/pure/concurrency/cpuinfo.nim +++ b/lib/pure/concurrency/cpuinfo.nim @@ -50,7 +50,7 @@ when defined(haiku): header: "<OS.h>".} proc countProcessors*(): int {.rtl, extern: "ncpi$1".} = - ## returns the numer of the processors/cores the machine has. + ## returns the number of the processors/cores the machine has. ## Returns 0 if it cannot be detected. when defined(windows): type |