From 6ff299a7ab5bcfbf6950ba8fe85d8193e1bfd06e Mon Sep 17 00:00:00 2001 From: ancheefa Date: Sat, 24 Jun 2023 09:12:10 +0300 Subject: [PATCH] Update manual.md --- docs/src/manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/manual.md b/docs/src/manual.md index a1cf6a1..caa8e47 100644 --- a/docs/src/manual.md +++ b/docs/src/manual.md @@ -254,7 +254,7 @@ context_ref(value) = @ContextManager function(cont) end # we can try out a contextmanager, by providing `identity` as the continuation `cont` -context_print("value")(identity) # 4 +context_print(4)(identity) # 4 # initializing value=4 # finalizing value=4, got result=4