Fixes typo in news.txt (thanks @tmm1)

This commit is contained in:
Dominik Picheta
2015-09-22 23:25:48 +01:00
parent 514edf3916
commit 990812760a

View File

@@ -3,7 +3,7 @@ News
====
..
2015-09-14 Version 0.11.4 released
2015-xx-xx Version 0.11.4 released
==================================
Changes affecting backwards compatibility
@@ -120,9 +120,9 @@ News
- Added ``macros.getImpl`` that can be used to access the implementation of
a routine or a constant. This allows for example for user-defined inlining
of function calls.
- Tuple unpacking finally works in a non-var/let context: ``(x, y) == f()``
- Tuple unpacking finally works in a non-var/let context: ``(x, y) = f()``
is allowed. Note that this doesn't declare ``x`` and ``y`` variables, for
this ``let (x, y) == f()`` still needs to be used.
this ``let (x, y) = f()`` still needs to be used.
- ``when nimvm`` can now be used for compiletime versions of some code
sections. Click `here <docs/manual.html#when-nimvm-statement>`_ for details.
- Usage of the type ``NimNode`` in a proc now implicitly annotates the proc