diff options
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,7 +31,7 @@ typedef SharedPtr<Node> NodePtr; /** * A class that operates on a Node. Called recursively on a node and all - * of its tqchildren. + * of its children. */ class NodeFunctor { @@ -50,7 +50,7 @@ class Node // typically read-only. virtual void deleteNode(Node *node); - // Calls functor() on all subtqchildren and this. + // Calls functor() on all subchildren and this. virtual void applyMap(NodeFunctor &fn) const = 0; // Returns an infix representation of the expression. |