From 57ffeafda016a9772f6548d462f8d9acdcad33bd Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Tue, 14 Nov 2023 18:57:23 +0800 Subject: [PATCH] minor fixes for changelog (#22938) ref https://github.com/nim-lang/Nim/commit/1bb117cd7a49954832d21e6a1502492770acb77b#r132468022 --- changelogs/changelog_2_0_0_details.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelogs/changelog_2_0_0_details.md b/changelogs/changelog_2_0_0_details.md index a38f2b40b7015..950fa4069565c 100644 --- a/changelogs/changelog_2_0_0_details.md +++ b/changelogs/changelog_2_0_0_details.md @@ -205,7 +205,7 @@ proc prc(): int = 123 - iterator iter(): int = + iterator iter(): int {.closure.} = yield 123 proc takesProc[T: proc](x: T) = discard