summaryrefslogtreecommitdiffstats
path: root/src/node.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-15 15:29:00 -0600
committerTimothy Pearson <[email protected]>2011-12-15 15:29:00 -0600
commitb877728731c783fbd7370935a6733c78c25d5ce2 (patch)
tree93c019e65513df453864f3434bff0da826213ffd /src/node.h
parentd4eecf4afe4ddf66f4d00e1bcdab14f8d21655fb (diff)
downloadabakus-b877728731c783fbd7370935a6733c78c25d5ce2.tar.gz
abakus-b877728731c783fbd7370935a6733c78c25d5ce2.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/node.h')
-rw-r--r--src/node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node.h b/src/node.h
index b62e9c0..f5820e6 100644
--- a/src/node.h
+++ b/src/node.h
@@ -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.