summaryrefslogtreecommitdiffstats
path: root/src/node.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:34:38 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:34:38 -0600
commitc9113d74fbb7e1e6b063915a0f6ac4a8a080b631 (patch)
tree467dcbf1c8ed26f2a2fb2a4cc2fdd6d13fc025bc /src/node.h
parentabb0359d58bc4cc3640f094fd386cf3461fc125a (diff)
downloadabakus-c9113d74fbb7e1e6b063915a0f6ac4a8a080b631.tar.gz
abakus-c9113d74fbb7e1e6b063915a0f6ac4a8a080b631.zip
Remove additional unneeded tq method conversions
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.