summaryrefslogtreecommitdiff
path: root/src/expr
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-12-24 12:45:13 -0500
committerMorgan Deters <mdeters@cs.nyu.edu>2013-12-24 12:45:13 -0500
commit4abb82936fbb1a297d0d5eb69f8dbdb4599a67f2 (patch)
treebca270de413bd8d8ea942160c652cd602df40120 /src/expr
parent36e60903069f0faf3d3d4caf4f2ca6ff384896c9 (diff)
Minor code cleanup.
Diffstat (limited to 'src/expr')
-rw-r--r--src/expr/attribute.cpp2
-rw-r--r--src/expr/attribute_unique_id.h2
-rw-r--r--src/expr/command.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/expr/attribute.cpp b/src/expr/attribute.cpp
index 86768500b..cde261463 100644
--- a/src/expr/attribute.cpp
+++ b/src/expr/attribute.cpp
@@ -128,7 +128,7 @@ void AttributeManager::deleteAttributes(const AttrIdVec& atids){
case AttrTableCDNode:
case AttrTableCDString:
case AttrTableCDPointer:
- Unimplemented("CDAttributes cannot be deleted. Contact Tim/Morgan if this behaviour is desired.");
+ Unimplemented("CDAttributes cannot be deleted. Contact Tim/Morgan if this behavior is desired.");
break;
case LastAttrTable:
default:
diff --git a/src/expr/attribute_unique_id.h b/src/expr/attribute_unique_id.h
index 08b31a4c0..3a52d7a89 100644
--- a/src/expr/attribute_unique_id.h
+++ b/src/expr/attribute_unique_id.h
@@ -46,7 +46,7 @@ enum AttrTableId {
};
/**
- * This uniquely indentifies attributes across tables.
+ * This uniquely identifies attributes across tables.
*/
class AttributeUniqueId {
AttrTableId d_tableId;
diff --git a/src/expr/command.cpp b/src/expr/command.cpp
index 0b664ceb4..9341c9828 100644
--- a/src/expr/command.cpp
+++ b/src/expr/command.cpp
@@ -467,7 +467,7 @@ Command* CommandSequence::exportTo(ExprManager* exprManager, ExprManagerMapColle
Command* cmd_to_export = *i;
Command* cmd = cmd_to_export->exportTo(exprManager, variableMap);
seq->addCommand(cmd);
- Debug("export") << "[export] so far coverted: " << seq << endl;
+ Debug("export") << "[export] so far converted: " << seq << endl;
}
seq->d_index = d_index;
return seq;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback