summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--changelog.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/changelog.md b/changelog.md
index 813c4caf8..3482c9eba 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