diff options
author | narimiran <narimiran@disroot.org> | 2020-10-20 13:57:50 +0200 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2020-10-20 13:58:12 +0200 |
commit | b418c54ec46ac79718d0bc68abb4e6531930f398 (patch) | |
tree | aae7c56796e708c592e3e71d81d04537bd0d7dca | |
parent | 725c7caa027ff9e04ad514bade72163522c8d28a (diff) | |
download | Nim-b418c54ec46ac79718d0bc68abb4e6531930f398.tar.gz |
even more "eg" fixes [ci skip]
-rw-r--r-- | compiler/ast.nim | 2 | ||||
-rw-r--r-- | compiler/cmdlinehelper.nim | 2 | ||||
-rw-r--r-- | compiler/docgen.nim | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim index f796e64c2..d81ccf33b 100644 --- a/compiler/ast.nim +++ b/compiler/ast.nim @@ -875,7 +875,7 @@ type annex*: PLib # additional fields (seldom used, so we use a # reference to another object to save space) when hasFFI: - cname*: string # resolved C declaration name in importc decl, eg: + cname*: string # resolved C declaration name in importc decl, e.g.: # proc fun() {.importc: "$1aux".} => cname = funaux constraint*: PNode # additional constraints like 'lit|result'; also # misused for the codegenDecl pragma in the hope diff --git a/compiler/cmdlinehelper.nim b/compiler/cmdlinehelper.nim index a6b56b97e..5fb8ab471 100644 --- a/compiler/cmdlinehelper.nim +++ b/compiler/cmdlinehelper.nim @@ -7,7 +7,7 @@ # distribution, for details about the copyright. # -## Helpers for binaries that use compiler passes, eg: nim, nimsuggest, nimfix +## Helpers for binaries that use compiler passes, e.g.: nim, nimsuggest, nimfix import options, idents, nimconf, extccomp, commands, msgs, diff --git a/compiler/docgen.nim b/compiler/docgen.nim index fb15f3826..e9cd08402 100644 --- a/compiler/docgen.nim +++ b/compiler/docgen.nim @@ -30,7 +30,7 @@ type ExampleGroup = ref object ## a group of runnableExamples with same rdoccmd rdoccmd: string ## from 1st arg in `runnableExamples(rdoccmd): body` - docCmd: string ## from user config, eg --doccmd:-d:foo + docCmd: string ## from user config, e.g. --doccmd:-d:foo code: string ## contains imports; each import contains `body` index: int ## group index TDocumentor = object of rstgen.RstGenerator @@ -457,7 +457,7 @@ proc writeExample(d: PDoc; ex: PNode, rdoccmd: string) = proc runAllExamples(d: PDoc) = # This used to be: `let backend = if isDefined(d.conf, "js"): "js"` (etc), however - # using `-d:js` (etc) cannot work properly, eg would fail with `importjs` + # using `-d:js` (etc) cannot work properly, e.g. would fail with `importjs` # since semantics are affected by `config.backend`, not by isDefined(d.conf, "js") let outputDir = d.exampleOutputDir for _, group in d.exampleGroups: @@ -1259,7 +1259,7 @@ proc generateIndex*(d: PDoc) = writeIndexFile(d[], dest.string) proc updateOutfile(d: PDoc, outfile: AbsoluteFile) = - if d.module == nil or sfMainModule in d.module.flags: # nil for eg for commandRst2Html + if d.module == nil or sfMainModule in d.module.flags: # nil for e.g. for commandRst2Html if d.conf.outFile.isEmpty: d.conf.outFile = outfile.relativeTo(d.conf.outDir) if isAbsolute(d.conf.outFile.string): |