summaryrefslogtreecommitdiff
path: root/src/context/context.h
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2010-02-01 21:58:47 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2010-02-01 21:58:47 +0000
commit595eb7e203d27a9b24a2b71808bc79dab76fa7ba (patch)
tree18460cf3d1596edf80c61610014b2fe196f0d78b /src/context/context.h
parent1b1e9acfad453c50151f6c6465e5eabbac075f19 (diff)
Fixing the CVC grammar for parsing Boolean expressions. All the associativity stufff is now in the grammar. All the parser tests pass now.
Diffstat (limited to 'src/context/context.h')
-rw-r--r--src/context/context.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/context/context.h b/src/context/context.h
index 114c8ed69..3bac70cb6 100644
--- a/src/context/context.h
+++ b/src/context/context.h
@@ -51,7 +51,7 @@ class ContextNotifyObj;
class Context {
/**
- * Pointer to the ContextMemoryManager fot this Context.
+ * Pointer to the ContextMemoryManager for this Context.
*/
ContextMemoryManager* d_pCMM;
@@ -67,13 +67,13 @@ class Context {
/**
* Doubly-linked list of objects to notify before every pop. See
- * ContextNotifyObj for sturcture of linked list.
+ * ContextNotifyObj for structure of linked list.
*/
ContextNotifyObj* d_pCNOpre;
/**
* Doubly-linked list of objects to notify after every pop. See
- * ContextNotifyObj for sturcture of linked list.
+ * ContextNotifyObj for structure of linked list.
*/
ContextNotifyObj* d_pCNOpost;
@@ -189,7 +189,7 @@ public:
{ if (pScopePrev != NULL) d_level = pScopePrev->getLevel() + 1; }
/**
- * Destructor: Restore all of the objects in CotextObjList. Defined inline
+ * Destructor: Restore all of the objects in ContextObjList. Defined inline
* below.
*/
~Scope();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback