summaryrefslogtreecommitdiffstats
path: root/include/codemaker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-05-18 21:58:31 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-05-18 21:58:31 +0200
commit52ef15cbdb428596b562dbbbc92ae2fcf3473890 (patch)
treee2a73ce67c78e310a41e55d2873667d9f4d20e27 /include/codemaker
parenttdf#107176: just return initial selection when there's no range (diff)
downloadcore-52ef15cbdb428596b562dbbbc92ae2fcf3473890.tar.gz
core-52ef15cbdb428596b562dbbbc92ae2fcf3473890.zip
Revert "Fix typos"
This reverts commit 26a67002fcb9381b54de6cae1aaa37120d49066a. "Iff" is not a typo, see 2a65bf32ec270484dcea4d22d3c93552dc0c24dd "Revert 'Typo: iff->if'".
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 6cb3d06e3441..7118006ef71b 100644
--- a/include/codemaker/exceptiontree.hxx
+++ b/include/codemaker/exceptiontree.hxx
@@ -71,10 +71,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 if the given exception type is a member of
+ exception type, present is true iff 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 if present is false).
+ node it holds that children is non-empty iff present is false).
*/
class ExceptionTree {
public:
diff --git a/include/codemaker/generatedtypeset.hxx b/include/codemaker/generatedtypeset.hxx
index 159101b14362..21c9d0b1ba2a 100644
--- a/include/codemaker/generatedtypeset.hxx
+++ b/include/codemaker/generatedtypeset.hxx
@@ -52,7 +52,7 @@ public:
@param type a UNO type registry name
- @return true if the given type has already been generated
+ @return true iff the given type has already been generated
*/
bool contains(OString const & type) const
{ return m_set.find(type) != m_set.end(); }