diff options
author | flywind <43030857+xflywind@users.noreply.github.com> | 2020-12-06 12:51:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-06 05:51:29 +0100 |
commit | 1aaa67fc18879bd2aa8ae8f5e7dc763f826c73b6 (patch) | |
tree | 604150cbf106fc085cd8be20f48be3946399b86f /lib | |
parent | af7f7726fe727b68238533f690fb7cd98552e4e4 (diff) | |
download | Nim-1aaa67fc18879bd2aa8ae8f5e7dc763f826c73b6.tar.gz |
[docs minor] remove unicode in docs comments (#16267)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/uri.nim | 2 | ||||
-rw-r--r-- | lib/system/atomics.nim | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/uri.nim b/lib/pure/uri.nim index 5b16bfcb1..e993c240d 100644 --- a/lib/pure/uri.nim +++ b/lib/pure/uri.nim @@ -11,7 +11,7 @@ ## ## A Uniform Resource Identifier (URI) provides a simple and extensible ## means for identifying a resource. A URI can be further classified -## as a locator, a name, or both. The term “Uniform Resource Locator” +## as a locator, a name, or both. The term "Uniform Resource Locator" ## (URL) refers to the subset of URIs. ## ## Basic usage 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) {. |