diff options
Diffstat (limited to 'doc/manual/stmts.txt')
-rw-r--r-- | doc/manual/stmts.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual/stmts.txt b/doc/manual/stmts.txt index 318738063..fa1cac8e1 100644 --- a/doc/manual/stmts.txt +++ b/doc/manual/stmts.txt @@ -462,10 +462,10 @@ While statement Example: .. code-block:: nim - echo "Please tell me your password: \n" + echo "Please tell me your password:" var pw = readLine(stdin) while pw != "12345": - echo "Wrong password! Next try: \n" + echo "Wrong password! Next try:" pw = readLine(stdin) |