diff --git a/Nim-for-C-programmers.md b/Nim-for-C-programmers.md index 0021ea4..af1584c 100644 --- a/Nim-for-C-programmers.md +++ b/Nim-for-C-programmers.md @@ -185,7 +185,7 @@ echo "byte ", $int(a), "\nA" & $a & "B" -Newlines and chars. In nimrod you can't use ``\n`` as a character literal, because on the Windows platform it expands to CR+LR. So you need to specify which char to use. +Newlines and chars. In nim you can't use ``\n`` as a character literal, because on the Windows platform it expands to CR+LR. So you need to specify which char to use.