summaryrefslogtreecommitdiff
path: root/include/mcld/LD/SymbolTableFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mcld/LD/SymbolTableFactory.h')
-rw-r--r--include/mcld/LD/SymbolTableFactory.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/include/mcld/LD/SymbolTableFactory.h b/include/mcld/LD/SymbolTableFactory.h
index cc02241..6196603 100644
--- a/include/mcld/LD/SymbolTableFactory.h
+++ b/include/mcld/LD/SymbolTableFactory.h
@@ -23,9 +23,9 @@ class StrSymPool;
/** \class SymbolTableFactory
* \brief SymbolTableFactory manages SymbolTableIFs.
*
- * SymbolTableFactory is responsed for construction and destruction of
- * SymbolTableIF. Since different MCLDFiles have different type of
- * SymbolTableIF, SymbolTableFactory separates the construction of
+ * SymbolTableFactory is responsed for construction and destruction of
+ * SymbolTableIF. Since different MCLDFiles have different type of
+ * SymbolTableIF, SymbolTableFactory separates the construction of
* SymbolTableIF into createInputTable() and createOutputTable().
*
* @see SymbolTableIF InputSymbolTable OutputSymbolTable
@@ -34,7 +34,7 @@ class SymbolTableFactory
{
public:
/// SymbolTableFactory - constructor
- // @param pNumOfSymbolTables is the most appropriate number of created
+ // @param pNumOfSymbolTables is the most appropriate number of created
// symbol tables.
// @param pStorage the real storage of created symbols
explicit SymbolTableFactory(size_t pNumOfSymbolTables,
@@ -46,7 +46,7 @@ public:
/// createInputTable - create a symbol table for an input file
// @param pEntireStringTable the string table of created Symbols.
// @param pDynamicStringTable the string table of created Dynamic Symbols.
- // @param pReserve Created symbol table must reserve pReserve number of
+ // @param pReserve Created symbol table must reserve pReserve number of
// storages of symbol for creating symbols.
SymbolTableIF *createInputTable(StringTable &pEntireStringTable,
StringTable &pDynamicStringTable,
@@ -55,7 +55,7 @@ public:
/// createOutputTable - create a symbol table for an output file
// @param pEntireStringTable the string table of created Symbols.
// @param pDynamicStringTable the string table of created Dynamic Symbols.
- // @param pReserve Created symbol table must reserve pReserve number of
+ // @param pReserve Created symbol table must reserve pReserve number of
// storages of symbol for creating symbols.
SymbolTableIF *createOutputTable(StringTable &pEntireStringTable,
StringTable &pDynamicStringTable,
@@ -70,4 +70,3 @@ private:
} // namespace of mcld
#endif
-