Remove quotes around "test"

The example for adding a test section uses quotes around the
test target, "test".

However, this doesn't work, as it's not a valid identifier and
nimble fails with:

    Error: identifier expected, but found '`"test" Task`'.

Remove the quotes in the example.
This commit is contained in:
Luke Diamand 2016-12-30 18:43:29 +00:00
commit 56f547f52e

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"
```