diff options
author | Dominik Picheta <dominikpicheta@gmail.com> | 2016-01-21 22:53:04 +0000 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@gmail.com> | 2016-01-21 22:53:04 +0000 |
commit | 9cad19f528f2ca844ba66383bb2eb6cb5c2994d3 (patch) | |
tree | 348cccddafdad13b63e7ccebbbea80e60d74158c | |
parent | 71e4e39295fe31e3d2d36fc7e4abfa51b3e240cd (diff) | |
download | Nim-9cad19f528f2ca844ba66383bb2eb6cb5c2994d3.tar.gz |
Small typo fixes in news.
-rw-r--r-- | web/news.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/web/news.txt b/web/news.txt index 62c3cef24..61a74127f 100644 --- a/web/news.txt +++ b/web/news.txt @@ -101,7 +101,7 @@ The following used to work as the environment creation used to be attached to th var s: seq[proc(): int {.closure.}] = @[] for i in 0 ..< 30: let ii = i - s.add(proc(): int = return ii*ii)) + s.add(proc(): int = return ii*ii) This behaviour has changed in 0.13.0 and now needs to be written as: @@ -133,8 +133,6 @@ via a commit, for a full list see (`#3498 <https://github.com/nim-lang/Nim/issues/3498>`_) - Fixed "multimethods: Error: internal error: cgmeth.genConv" (`#3550 <https://github.com/nim-lang/Nim/issues/3550>`_) -- Fixed "multimethods: Error: internal error: cgmeth.genConv" - (`#3550 <https://github.com/nim-lang/Nim/issues/3550>`_) - Fixed "nimscript - SIGSEGV in except block" (`#3546 <https://github.com/nim-lang/Nim/issues/3546>`_) - Fixed "Bool literals in macros do not work." |