Updated Unofficial FAQ (markdown)

This commit is contained in:
Dennis Felsing 2016-03-07 22:36:19 +01:00
parent 7b59462366
commit b4b24e86d7
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ Tabs are treated differently by different tools and editors. Because indentation
Nim is certainly not unique in forbidding tabs. [YAML](http://www.yaml.org/faq.html) does the same.
However, if you insist on using tabs in your code, putting this at the top of your code will change the tabs into spaces when compiling `#! replace(sub = "\t", by = " ")`
However, if you insist on using tabs in your code, putting this at the top of your code will change the tabs into spaces when compiling `#? replace(sub = "\t", by = " ")`
# I get an error trying to compile Nim on Windows.