summary refs log tree commit diff stats
path: root/lib/system
diff options
context:
space:
mode:
authorflywind <43030857+xflywind@users.noreply.github.com>2020-12-06 12:51:29 +0800
committerGitHub <noreply@github.com>2020-12-06 05:51:29 +0100
commit1aaa67fc18879bd2aa8ae8f5e7dc763f826c73b6 (patch)
tree604150cbf106fc085cd8be20f48be3946399b86f /lib/system
parentaf7f7726fe727b68238533f690fb7cd98552e4e4 (diff)
downloadNim-1aaa67fc18879bd2aa8ae8f5e7dc763f826c73b6.tar.gz
[docs minor] remove unicode in docs comments (#16267)
Diffstat (limited to 'lib/system')
-rw-r--r--lib/system/atomics.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system/atomics.nim b/lib/system/atomics.nim
index 15e8a56a7..f69cb753d 100644
--- a/lib/system/atomics.nim
+++ b/lib/system/atomics.nim
@@ -125,8 +125,8 @@ when someGcc and hasThreadSupport:
   proc atomicTestAndSet*(p: pointer, mem: AtomMemModel): bool {.
     importc: "__atomic_test_and_set", nodecl.}
     ## This built-in function performs an atomic test-and-set operation on the byte at p.
-    ## The byte is set to some implementation defined nonzero “set” value and the return
-    ## value is true if and only if the previous contents were “set”.
+    ## The byte is set to some implementation defined nonzero "set" value and the return
+    ## value is true if and only if the previous contents were "set".
     ## All memory models are valid.
 
   proc atomicClear*(p: pointer, mem: AtomMemModel) {.