diff options
author | Nan Xiao <nan@chinadtrace.org> | 2022-01-03 17:30:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-03 10:30:26 +0100 |
commit | bd4f76a2e3b9282548e62ba3b620b09d6c564373 (patch) | |
tree | db4976c9665e9ed5d048a1941ed2855e12f50f49 /doc | |
parent | e49d52eb6174b2721293968e7811928c303c3776 (diff) | |
download | Nim-bd4f76a2e3b9282548e62ba3b620b09d6c564373.tar.gz |
docs: Fix typo in tut1.rst (#19309)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tut1.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut1.rst b/doc/tut1.rst index 2856625b7..d8e0ec8e4 100644 --- a/doc/tut1.rst +++ b/doc/tut1.rst @@ -913,7 +913,7 @@ Let's return to the simple counting example: echo i Can a `countup <system.html#countup.i,T,T,Positive>`_ proc be written that -supports this loop? Lets try: +supports this loop? Let's try: .. code-block:: nim proc countup(a, b: int): int = |