diff options
author | Ivan Koster <ivankoster@gmail.com> | 2017-02-24 15:43:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-24 15:43:31 +0100 |
commit | 8ebc8697736acf2c7828fbe2dcb57c54ad48f760 (patch) | |
tree | 1a56e5e585075876f3168da980193cc6c3cc33d4 /lib | |
parent | e8ad59fdc497843e712583cba03cfd1809124bfb (diff) | |
download | Nim-8ebc8697736acf2c7828fbe2dcb57c54ad48f760.tar.gz |
Remove unnecessary colon in unittest.nim code example
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/unittest.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/unittest.nim b/lib/pure/unittest.nim index cdca02ed7..01af0f839 100644 --- a/lib/pure/unittest.nim +++ b/lib/pure/unittest.nim @@ -24,7 +24,7 @@ ## echo "run before each test" ## ## teardown: -## echo "run after each test": +## echo "run after each test" ## ## test "essential truths": ## # give up and stop if this fails |