Skip to content

Commit

Permalink
fixes some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Araq committed Jan 19, 2016
1 parent faea0f9 commit 2dfefc2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions web/news.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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
--------
Expand Down

0 comments on commit 2dfefc2

Please sign in to comment.