Small grammar/spelling fix for changelog (#7896)

* Small grammar/spelling fix.

* Tiny grammar fix
This commit is contained in:
Clyybber
2018-05-28 20:17:21 +02:00
committed by Varriount
parent 5db01f7abe
commit 66780c1f4f

View File

@@ -76,13 +76,13 @@
- The `terminal` module now exports additional procs for generating ANSI color
codes as strings.
- Added the parameter ``val`` for the ``CritBitTree[int].inc`` proc.
- An exception raised from ``test`` block of ``unittest`` now show its type in
error message
- An exception raised from ``test`` block of ``unittest`` now shows its type in
the error message
### Language additions
- Dot calls combined with explicit generic instantiations can now be written
as ``x.y[:z]``. ``x.y[:z]`` that is transformed into ``y[z](x)`` in the parser.
as ``x.y[:z]`` which is transformed into ``y[z](x)`` by the parser.
- ``func`` is now an alias for ``proc {.noSideEffect.}``.
- In order to make ``for`` loops and iterators more flexible to use Nim now
supports so called "for-loop macros". See