From f87a91a3ec97a83a160984a029d55335a6beb978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A3=CF=84=CE=AD=CF=86=CE=B1=CE=BD=CE=BF=CF=82?= Date: Mon, 20 Aug 2018 10:40:56 +0300 Subject: [PATCH] Fixed a minor typo (#8685) --- doc/tut1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tut1.rst b/doc/tut1.rst index 67ef439480..e200cfe8ba 100644 --- a/doc/tut1.rst +++ b/doc/tut1.rst @@ -571,8 +571,8 @@ With parenthesis and semicolons ``(;)`` you can use statements where only an expression is allowed: .. code-block:: nim - # computes fac(4) at compile time: :test: "nim c $1" + # computes fac(4) at compile time: const fac4 = (var x = 1; for i in 1..4: x *= i; x)