diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2017-02-24 18:13:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-24 18:13:27 +0100 |
commit | 7579171ee7dfa6cc816b336b708003ffee9821cc (patch) | |
tree | 0f079267f12ed0ae67f20e447cabc623adf6dc46 /lib/pure | |
parent | 4af2c26c918239fa79f7523e923b5bbceaafc272 (diff) | |
parent | 8ebc8697736acf2c7828fbe2dcb57c54ad48f760 (diff) | |
download | Nim-7579171ee7dfa6cc816b336b708003ffee9821cc.tar.gz |
Merge pull request #5427 from ivankoster/patch-1
Remove unnecessary colon in unittest.nim code example
Diffstat (limited to 'lib/pure')
-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 |