diff options
Diffstat (limited to 'changelogs/changelog_2_0_0_details.md')
-rw-r--r-- | changelogs/changelog_2_0_0_details.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/changelogs/changelog_2_0_0_details.md b/changelogs/changelog_2_0_0_details.md index a38f2b40b..24dc4edad 100644 --- a/changelogs/changelog_2_0_0_details.md +++ b/changelogs/changelog_2_0_0_details.md @@ -72,7 +72,7 @@ - `shallowCopy` and `shallow` are removed for ARC/ORC. Use `move` when possible or combine assignment and `sink` for optimization purposes. -- The experimental `nimPreviewDotLikeOps` switch is going to be removed or deprecated because it didn't fullfill its promises. +- The experimental `nimPreviewDotLikeOps` switch is going to be removed or deprecated because it didn't fulfill its promises. - The `{.this.}` pragma, deprecated since 0.19, has been removed. - `nil` literals can no longer be directly assigned to variables or fields of `distinct` pointer types. They must be converted instead. @@ -205,7 +205,7 @@ proc prc(): int = 123 - iterator iter(): int = + iterator iter(): int {.closure.} = yield 123 proc takesProc[T: proc](x: T) = discard |