Merge pull request #297 from luked99/master

Remove quotes around "test"
This commit is contained in:
Dominik Picheta 2016-12-31 12:37:41 +00:00 committed by GitHub
commit db68bc575a

View file

@ -464,7 +464,7 @@ To make testing even more convenient, you may wish to define a ``test`` task
in your ``.nimble`` file. Like so:
```nim
task "test", "Runs the test suite":
task test, "Runs the test suite":
exec "nim c -r tests/tester"
```