From 66780c1f4fe4dc0d525e593c685cb7933bf81fe6 Mon Sep 17 00:00:00 2001 From: Clyybber Date: Mon, 28 May 2018 20:17:21 +0200 Subject: [PATCH] Small grammar/spelling fix for changelog (#7896) * Small grammar/spelling fix. * Tiny grammar fix --- changelog.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 813c4caf84..3482c9ebae 100644 --- a/changelog.md +++ b/changelog.md @@ -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