minor documentation fix
authorMorgan Deters <mdeters@gmail.com>
Thu, 29 Nov 2012 19:37:32 +0000 (19:37 +0000)
committerMorgan Deters <mdeters@gmail.com>
Thu, 29 Nov 2012 19:37:32 +0000 (19:37 +0000)
src/expr/symbol_table.h

index a36b7b2b44f3405652c68ba204985448f3ef024a..bb6e99091bcbe0724fcea549fe7d49efdb8201ee 100644 (file)
@@ -59,10 +59,10 @@ class CVC4_PUBLIC SymbolTable {
   context::CDHashSet<Expr, ExprHashFunction> *d_functions;
 
 public:
-  /** Create a declaration scope. */
+  /** Create a symbol table. */
   SymbolTable();
 
-  /** Destroy a declaration scope. */
+  /** Destroy a symbol table. */
   ~SymbolTable();
 
   /**
@@ -195,7 +195,7 @@ public:
   /** Push a scope level. */
   void pushScope() throw();
 
-  /** Get the current level of this declaration scope. */
+  /** Get the current level of this symbol table. */
   size_t getLevel() const throw();
 
 };/* class SymbolTable */