From 0dd31a4f977f4220f6f510520db236863ba9bff7 Mon Sep 17 00:00:00 2001 From: Timothee Cour Date: Mon, 20 Aug 2018 15:22:25 -0700 Subject: [PATCH] fix typo in changelog.md: nnkTupleConst => nnkTupleConstr --- changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 45bdb495dc..8d4dc81c01 100644 --- a/changelog.md +++ b/changelog.md @@ -6,7 +6,7 @@ - ``macros.callsite`` is now deprecated. Since the introduction of ``varargs`` parameters this became unnecessary. - Anonymous tuples with a single element can now be written as ``(1,)`` with a - trailing comma. The underlying AST is ``nnkTupleConst(newLit 1)`` for this + trailing comma. The underlying AST is ``nnkTupleConstr(newLit 1)`` for this example. ``nnkTupleConstr`` is a new node kind your macros need to be able to deal with! - Indexing into a ``cstring`` for the JS target is now mapped