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/experimental | |
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/experimental')
-rw-r--r-- | lib/experimental/diff.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/experimental/diff.nim b/lib/experimental/diff.nim index 3462a0fa4..ba4e8ad64 100644 --- a/lib/experimental/diff.nim +++ b/lib/experimental/diff.nim @@ -12,14 +12,14 @@ ## ## A basic example of `diffInt` on 2 arrays of integers: ## -## .. code::nim +## .. code:: Nim ## ## import experimental/diff ## echo diffInt([0, 1, 2, 3, 4, 5, 6, 7, 8], [-1, 1, 2, 3, 4, 5, 666, 7, 42]) ## ## Another short example of `diffText` to diff strings: ## -## .. code::nim +## .. code:: Nim ## ## import experimental/diff ## # 2 samples of text for testing (from "The Call of Cthulhu" by Lovecraft) |