Fix a typo 'iff' => 'if'
[oota-llvm.git] / include / llvm / ADT / SetVector.h
index 965f0deacaa249475f6dedf45d5d379b052ca737..dcd88376b08395d1fbc6c60a076d4cbcbbf87e26 100644 (file)
@@ -96,7 +96,7 @@ public:
     return vector_[n];
   }
 
-  /// @returns true iff the element was inserted into the SetVector.
+  /// @returns true if the element was inserted into the SetVector.
   /// @brief Insert a new element into the SetVector.
   bool insert(const value_type &X) {
     bool result = set_.insert(X);