diff options
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) {. |