[llvm] r273592 - Typo.

Vassil Vassilev via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 23 11:13:47 PDT 2016


Author: vvassilev
Date: Thu Jun 23 13:13:46 2016
New Revision: 273592

URL: http://llvm.org/viewvc/llvm-project?rev=273592&view=rev
Log:
Typo.

Modified:
    llvm/trunk/include/llvm/ADT/SetVector.h

Modified: llvm/trunk/include/llvm/ADT/SetVector.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/SetVector.h?rev=273592&r1=273591&r2=273592&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/SetVector.h (original)
+++ llvm/trunk/include/llvm/ADT/SetVector.h Thu Jun 23 13:13:46 2016
@@ -124,7 +124,7 @@ public:
   }
 
   /// \brief Insert a new element into the SetVector.
-  /// \returns true iff the element was inserted into the SetVector.
+  /// \returns true if the element was inserted into the SetVector.
   bool insert(const value_type &X) {
     bool result = set_.insert(X).second;
     if (result)




More information about the llvm-commits mailing list