summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@googlemail.com>2015-09-22 23:25:48 +0100
committerDominik Picheta <dominikpicheta@googlemail.com>2015-09-22 23:25:48 +0100
commit990812760a260f5ee8af753b9fb8fb87c6fb320a (patch)
treedea75d9d9834786b441b98aa9b4b7194a8e0a56b
parent514edf39166d5d5a4245822b0609ae965c4803c8 (diff)
downloadNim-990812760a260f5ee8af753b9fb8fb87c6fb320a.tar.gz
Fixes typo in news.txt (thanks @tmm1)
-rw-r--r--web/news.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/news.txt b/web/news.txt
index beb98192f..cfa40c65c 100644
--- a/web/news.txt
+++ b/web/news.txt
@@ -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