mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 05:50:30 +00:00
Fixes typo in news.txt (thanks @tmm1)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user