summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-04-07 01:59:17 +0200
committerAraq <rumpf_a@web.de>2014-04-07 01:59:17 +0200
commitd20e4e0df4a384c4b3249eda8a487d998e9eee47 (patch)
treecaa112f8eca53c47513f62587a95089b7e756219
parent9840a6912d8ba4fd348f265fb8733c62ac578be4 (diff)
downloadNim-d20e4e0df4a384c4b3249eda8a487d998e9eee47.tar.gz
updated news.txt
-rw-r--r--web/news.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/web/news.txt b/web/news.txt
index 536cce534..4aaf10992 100644
--- a/web/news.txt
+++ b/web/news.txt
@@ -30,7 +30,7 @@ kqueue has not been implemented yet but will be in the future.
 The Asynchronous IO API provides both
 a callback interface and an interface which allows you to write code as you
 would if you were writing synchronous code. The latter is done through
-the use of an ``await`` keyword which behaves similar to C#'s await. The
+the use of an ``await`` macro which behaves similar to C#'s await. The
 following is a very simple chat server demonstrating Nimrod's new async
 capabilities.
 
@@ -59,6 +59,11 @@ capabilities.
   serve()
   runForever()
 
+
+Note that this feature has been implemented with Nimrod's macro system and so
+``await`` and ``async`` are no keywords.
+
+
 Library Additions
 -----------------