summaryrefslogtreecommitdiffstats
path: root/src/bool/dec/dec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bool/dec/dec.h')
-rw-r--r--src/bool/dec/dec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bool/dec/dec.h b/src/bool/dec/dec.h
index 07bf9f6b..e02b96c4 100644
--- a/src/bool/dec/dec.h
+++ b/src/bool/dec/dec.h
@@ -94,10 +94,10 @@ struct Dec_Man_t_
/// ITERATORS ///
////////////////////////////////////////////////////////////////////////
-// interator throught the leaves
+// iterator through the leaves
#define Dec_GraphForEachLeaf( pGraph, pLeaf, i ) \
for ( i = 0; (i < (pGraph)->nLeaves) && (((pLeaf) = Dec_GraphNode(pGraph, i)), 1); i++ )
-// interator throught the internal nodes
+// iterator through the internal nodes
#define Dec_GraphForEachNode( pGraph, pAnd, i ) \
for ( i = (pGraph)->nLeaves; (i < (pGraph)->nSize) && (((pAnd) = Dec_GraphNode(pGraph, i)), 1); i++ )