Follow NEP1 in NEP1 (#17221)

This commit is contained in:
Danil Yarantsev
2021-03-02 02:23:47 +03:00
committed by GitHub
parent 6c5872c169
commit 4f97898753

View File

@@ -239,7 +239,7 @@ Coding Conventions
proc repeat(text: string, x: int): string =
result = ""
for i in 0 .. x:
for i in 0..x:
result.add($i)
- Use a proc when possible, only using the more powerful facilities of macros,