summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--compiler/commands.nim2
-rw-r--r--readme.md2
-rw-r--r--readme.txt2
-rw-r--r--web/news.txt4
4 files changed, 5 insertions, 5 deletions
diff --git a/compiler/commands.nim b/compiler/commands.nim
index b38e52bc5..02c0b8486 100644
--- a/compiler/commands.nim
+++ b/compiler/commands.nim
@@ -53,7 +53,7 @@ proc processSwitch*(switch, arg: string, pass: TCmdLinePass, info: TLineInfo)
 
 const
   HelpMessage = "Nim Compiler Version $1 (" & CompileDate & ") [$2: $3]\n" &
-      "Copyright (c) 2006-2015 by Andreas Rumpf\n"
+      "Copyright (c) 2006-" & CompileDate.substr(0, 3) & " by Andreas Rumpf\n"
 
 const
   Usage = slurp"doc/basicopt.txt".replace("//", "")
diff --git a/readme.md b/readme.md
index 2fee6855d..32dbad9f1 100644
--- a/readme.md
+++ b/readme.md
@@ -81,7 +81,7 @@ allowing you to create commercial applications.
 
 Read copying.txt for more details.
 
-Copyright (c) 2006-2015 Andreas Rumpf.
+Copyright (c) 2006-2016 Andreas Rumpf.
 All rights reserved.
 
 # Build Status
diff --git a/readme.txt b/readme.txt
index 595c70bf2..7f9f50da3 100644
--- a/readme.txt
+++ b/readme.txt
@@ -14,5 +14,5 @@ allowing you to create commercial applications.
 
 Read copying.txt for more details.
 
-Copyright (c) 2006-2015 Andreas Rumpf.
+Copyright (c) 2006-2016 Andreas Rumpf.
 All rights reserved.
diff --git a/web/news.txt b/web/news.txt
index 30a31b378..62c3cef24 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(): string = 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:
 
@@ -119,7 +119,7 @@ per proc call. This change is subtle and unfortunate, but:
 
 1. Affects almost no code out there.
 2. Is easier to implement and we are at a point in Nim's development process where simple+stable wins over perfect-in-theory+unstable-in-practice.
-3. Implies programmers are more in control of where memory is allocated which is benefitical for a systems programming language.
+3. Implies programmers are more in control of where memory is allocated which is beneficial for a systems programming language.
 
 Bugfixes
 --------