From 07ecdf6080b8cde1bd41116e44a061aadb0fa0d4 Mon Sep 17 00:00:00 2001 From: jimbo1qaz Date: Sun, 2 Dec 2018 22:50:36 -0800 Subject: [PATCH] fix name of python namedtuple --- Nim-for-Python-Programmers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]