From aa7a1e3e90ced352b82f3d4bc2aa767b0545e79b Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 18 Jan 2016 20:12:16 +0100 Subject: [PATCH] fixes long standing typo in tut2 --- doc/tut2.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/tut2.txt b/doc/tut2.txt index 7479d8479d..5633445703 100644 --- a/doc/tut2.txt +++ b/doc/tut2.txt @@ -112,7 +112,7 @@ Example: Sym = object # a symbol name: string # the symbol's name line: int # the line the symbol was declared in - code: PNode # the symbol's abstract syntax tree + code: Node # the symbol's abstract syntax tree Type conversions @@ -162,11 +162,11 @@ An example: of nkFloat: floatVal: float of nkString: strVal: string of nkAdd, nkSub: - leftOp, rightOp: PNode + leftOp, rightOp: Node of nkIf: - condition, thenPart, elsePart: PNode + condition, thenPart, elsePart: Node - var n = PNode(kind: nkFloat, floatVal: 1.0) + var n = Node(kind: nkFloat, floatVal: 1.0) # the following statement raises an `FieldError` exception, because # n.kind's value does not fit: n.strVal = ""