diff options
author | Andrey Makarov <ph.makarov@gmail.com> | 2021-04-08 20:00:14 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-08 19:00:14 +0200 |
commit | 42687457b079c16f69b22ff2354590780bd4cf45 (patch) | |
tree | c144b2f80a6242b3029d3304fbd62270b7793163 /lib/system | |
parent | 4d3f9d3536e84d756f15b708177f289417dca3d2 (diff) | |
download | Nim-42687457b079c16f69b22ff2354590780bd4cf45.tar.gz |
further progress on rst roles & directives (fix #17646) (#17659)
* further progress on rst roles & dir-s (fix #17646) * fix documents according to the messages * fix bug 17 from #17340
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/iterators.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/iterators.nim b/lib/system/iterators.nim index 86d64d0c7..0f79970b8 100644 --- a/lib/system/iterators.nim +++ b/lib/system/iterators.nim @@ -304,7 +304,7 @@ iterator fieldPairs*[T: tuple|object](x: T): tuple[key: string, val: RootObj] {. ## picking the appropriate code to a secondary proc which you overload for ## each field type and pass the `value` to. ## - ## .. warning::: This really transforms the 'for' and unrolls the loop. The + ## .. warning:: This really transforms the 'for' and unrolls the loop. The ## current implementation also has a bug that affects symbol binding in the ## loop body. runnableExamples: |