Small typo (#15132)

The expected output necessarily cannot match the formatted string.
This commit is contained in:
Oliver Daniel
2020-07-31 10:35:50 -04:00
committed by GitHub
parent d23ae49535
commit 4bf8d38248

View File

@@ -201,7 +201,7 @@ macro capture*(locals: varargs[typed], body: untyped): untyped {.since: (1, 1).}
## for j in 7..9:
## if i * j == 42:
## capture i, j:
## myClosure = proc () = echo fmt"{i} * {j} = 42"
## myClosure = proc () = echo fmt"{i} * {j} == 42"
## myClosure() # output: 6 * 7 == 42
## let m = @[proc (s: string): string = "to " & s, proc (s: string): string = "not to " & s]
## var l = m.mapIt(capture(it, proc (s: string): string = it(s)))