Skip to content

Commit 8c19372

Browse files
timotheecourAraq
authored andcommitted
[ci skip] docfix .. < => ..< (#12981) [backport]
1 parent 21ea109 commit 8c19372

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/tut1.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ is possible, and actually an idiom:
645645
:test: "nim c $1"
646646
proc printSeq(s: seq, nprinted: int = -1) =
647647
var nprinted = if nprinted == -1: s.len else: min(nprinted, s.len)
648-
for i in 0 .. <nprinted:
648+
for i in 0 ..< nprinted:
649649
echo s[i]
650650
651651
If the procedure needs to modify the argument for the

0 commit comments

Comments
 (0)