[docs minor] remove unicode in docs comments (#16267)

This commit is contained in:
flywind
2020-12-06 12:51:29 +08:00
committed by GitHub
parent af7f7726fe
commit 1aaa67fc18
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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) {.