summaryrefslogtreecommitdiff
path: root/include/codemaker
diff options
context:
space:
mode:
Diffstat (limited to 'include/codemaker')
-rw-r--r--include/codemaker/exceptiontree.hxx4
-rw-r--r--include/codemaker/generatedtypeset.hxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/include/codemaker/exceptiontree.hxx b/include/codemaker/exceptiontree.hxx
index 091ff034bf72..b97286c29784 100644
--- a/include/codemaker/exceptiontree.hxx
+++ b/include/codemaker/exceptiontree.hxx
@@ -70,10 +70,10 @@ private:
exception com.sun.star.uno.RuntimeException and its subtypes are pruned
completely from the hierarchy. Each node of the hierarchy is represented by
an instance of ExceptionTreeNode, where name gives the name of the UNO
- exception type, present is true iff the given exception type is a member of
+ exception type, present is true if the given exception type is a member of
the set S, and children contains all the relevant direct subtypes of the
given exception type, in no particular order (for nodes other than the root
- node it holds that children is non-empty iff present is false).
+ node it holds that children is non-empty if present is false).
*/
class ExceptionTree {
public:
diff --git a/include/codemaker/generatedtypeset.hxx b/include/codemaker/generatedtypeset.hxx
index ca4ad24c68be..1a08e89618be 100644
--- a/include/codemaker/generatedtypeset.hxx
+++ b/include/codemaker/generatedtypeset.hxx
@@ -54,7 +54,7 @@ public:
@param type a UNO type registry name
- @return true iff the given type has already been generated
+ @return true if the given type has already been generated
*/
bool contains(OString const & type) const
{ return m_set.find(type) != m_set.end(); }