summaryrefslogtreecommitdiff
path: root/include/onlineupdate
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/onlineupdate
parent6bde2e93a2e0f94bc2263928cb27c4b85827822d (diff)
Revert "Fix typos"
This reverts commit 26a67002fcb9381b54de6cae1aaa37120d49066a. "Iff" is not a typo, see 2a65bf32ec270484dcea4d22d3c93552dc0c24dd "Revert 'Typo: iff->if'".
Diffstat (limited to 'include/onlineupdate')
-rw-r--r--include/onlineupdate/mozilla/TypeTraits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/onlineupdate/mozilla/TypeTraits.h b/include/onlineupdate/mozilla/TypeTraits.h
index 5aa6a7d7d2d6..16ef7ddb0cda 100644
--- a/include/onlineupdate/mozilla/TypeTraits.h
+++ b/include/onlineupdate/mozilla/TypeTraits.h
@@ -298,7 +298,7 @@ struct IsReference
/**
* IsArithmetic determines whether a type is arithmetic. A type is arithmetic
- * if it is an integral type or a floating point type.
+ * iff it is an integral type or a floating point type.
*
* mozilla::IsArithmetic<int>::value is true;
* mozilla::IsArithmetic<double>::value is true;
@@ -384,7 +384,7 @@ struct IsEmptyHelper
/**
* IsEmpty determines whether a type is a class (but not a union) that is empty.
*
- * A class is empty if it and all its base classes have no non-static data
+ * A class is empty iff it and all its base classes have no non-static data
* members (except bit-fields of length 0) and no virtual member functions, and
* no base class is empty or a virtual base class.
*