Skip to content

Commit

Permalink
replace wrt with proper word (#18724)
Browse files Browse the repository at this point in the history
* what does wrt mean?

* clarify
  • Loading branch information
ringabout authored Aug 22, 2021
1 parent 5b26f2b commit 061a918
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion compiler/ast.nim
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ type
case kind*: TSymKind
of routineKinds:
#procInstCache*: seq[PInstantiation]
gcUnsafetyReason*: PSym # for better error messages wrt gcsafe
gcUnsafetyReason*: PSym # for better error messages regarding gcsafe
transformedBody*: PNode # cached body after transf pass
of skLet, skVar, skField, skForVar:
guard*: PSym
Expand Down
2 changes: 1 addition & 1 deletion compiler/docgen.nim
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ proc presentationPath*(conf: ConfigRef, file: AbsoluteFile): RelativeFile =
if result.isEmpty: bail()
elif conf.docRoot.len > 0:
# we're (currently) requiring `isAbsolute` to avoid confusion when passing
# a relative path (would it be relative wrt $PWD or to projectfile)
# a relative path (would it be relative with regard to $PWD or to projectfile)
conf.globalAssert conf.docRoot.isAbsolute, arg=conf.docRoot
conf.globalAssert conf.docRoot.dirExists, arg=conf.docRoot
# needed because `canonicalizePath` called on `file`
Expand Down
2 changes: 1 addition & 1 deletion compiler/sighashes.nim
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ proc idOrSig*(s: PSym, currentModule: string,
sigCollisions: var CountTable[SigHash]): Rope =
if s.kind in routineKinds and s.typ != nil:
# signatures for exported routines are reliable enough to
# produce a unique name and this means produced C++ is more stable wrt
# produce a unique name and this means produced C++ is more stable regarding
# Nim changes:
let sig = hashProc(s)
result = rope($sig)
Expand Down
6 changes: 4 additions & 2 deletions lib/core/macros.nim
Original file line number Diff line number Diff line change
Expand Up @@ -442,9 +442,11 @@ proc ident*(name: string): NimNode {.magic: "StrToIdent", noSideEffect.}
## Create a new ident node from a string.

type
BindSymRule* = enum ## specifies how `bindSym` behaves
BindSymRule* = enum ## Specifies how `bindSym` behaves. The difference
## between open and closed symbols can be found in
## `<manual.html#symbol-lookup-in-generics-open-and-closed-symbols>`_
brClosed, ## only the symbols in current scope are bound
brOpen, ## open wrt overloaded symbols, but may be a single
brOpen, ## open for overloaded symbols, but may be a single
## symbol if not ambiguous (the rules match that of
## binding in generics)
brForceOpen ## same as brOpen, but it will always be open even
Expand Down
2 changes: 1 addition & 1 deletion tests/iter/titer3.nim
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var x = [[1, 2, 3], [4, 5, 6]]
for y in iter1(x[0]): write(stdout, $y)
writeLine(stdout, "")

# ensure closure and inline iterators have the same behaviour wrt
# ensure closure and inline iterators have the same behaviour regarding
# parameter passing

iterator clo(a: int): int {.closure.} =
Expand Down

0 comments on commit 061a918

Please sign in to comment.