diff --git a/Nim-for-Python-Programmers.md b/Nim-for-Python-Programmers.md index db5f472..235656d 100644 --- a/Nim-for-Python-Programmers.md +++ b/Nim-for-Python-Programmers.md @@ -155,7 +155,7 @@ A [very detailed comparison](https://scripter.co/notes/string-functions-nim-vs-p ### Python tuples -Nim Tuples are close to Python nametuples, see [manual](http://nim-lang.org/docs/manual.html#types-tuples-and-object-types). +Nim Tuples are close to Python namedtuples, see [manual](http://nim-lang.org/docs/manual.html#types-tuples-and-object-types). Use Nim arrays: ``` Nim var a = ["hi", "there"]