From 7afe6b1f4b9c7262e0c2b25580804853a1195e66 Mon Sep 17 00:00:00 2001 From: Timothee Cour Date: Sun, 29 Dec 2019 15:34:36 +0100 Subject: [PATCH] [ci skip] docfix .. < => ..< (#12981) [backport] (cherry picked from commit 8c1937269084bfc30d700b6cb4a75238798b86d2) --- doc/tut1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tut1.rst b/doc/tut1.rst index 2a7f77ed48941..8e1da35869eb9 100644 --- a/doc/tut1.rst +++ b/doc/tut1.rst @@ -645,7 +645,7 @@ is possible, and actually an idiom: :test: "nim c $1" proc printSeq(s: seq, nprinted: int = -1) = var nprinted = if nprinted == -1: s.len else: min(nprinted, s.len) - for i in 0 ..