From b1b57c09cd16e34e7a1f49374812734b8f1e7fe1 Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Tue, 23 Aug 2022 19:17:00 +0800 Subject: [PATCH] fixes manual regression (#20259) ref https://github.com/nim-lang/Nim/pull/20080 --- doc/manual.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/manual.md b/doc/manual.md index 44f6ff7cb7671..0a7231d23f5ac 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -790,9 +790,11 @@ of a call or whether it is parsed as a tuple constructor: ```nim echo(1, 2) # pass 1 and 2 to echo + ``` ```nim echo (1, 2) # pass the tuple (1, 2) to echo + ``` Dot-like operators ------------------