diff options
author | alaviss <alaviss@users.noreply.github.com> | 2019-01-08 14:42:10 +0700 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-01-08 08:42:10 +0100 |
commit | 20402579a2d22f506bf6079976c3480a7bd06531 (patch) | |
tree | 88a5fd9d4de564ca9cb7a39b3ecb548d2a4b00cc /lib/system | |
parent | abad758a7eff72e9f97224c400e1b48d09ecd97a (diff) | |
download | Nim-20402579a2d22f506bf6079976c3480a7bd06531.tar.gz |
system/strmantle: avoid leaking docs to system.nim [ci skip] (#10233)
thanks @timotheecour for spotting this
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/strmantle.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/strmantle.nim b/lib/system/strmantle.nim index ceaecb4f9..3c681fc53 100644 --- a/lib/system/strmantle.nim +++ b/lib/system/strmantle.nim @@ -7,7 +7,7 @@ # distribution, for details about the copyright. # -## Compilerprocs for strings that do not depend on the string implementation. +# Compilerprocs for strings that do not depend on the string implementation. proc cmpStrings(a, b: string): int {.inline, compilerProc.} = let alen = a.len |