fix name of python namedtuple

This commit is contained in:
jimbo1qaz 2018-12-02 22:50:36 -08:00
parent f6b5033f6e
commit 07ecdf6080
1 changed files with 1 additions and 1 deletions

View File

@ -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"]