[llvm] r254278 - [ADT] Fix typo in comment

Sanjoy Das via llvm-commits llvm-commits at lists.llvm.org
Sun Nov 29 17:24:17 PST 2015


Author: sanjoy
Date: Sun Nov 29 19:24:17 2015
New Revision: 254278

URL: http://llvm.org/viewvc/llvm-project?rev=254278&view=rev
Log:
[ADT] Fix typo in comment

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

Modified: llvm/trunk/include/llvm/ADT/STLExtras.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/STLExtras.h?rev=254278&r1=254277&r2=254278&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/STLExtras.h (original)
+++ llvm/trunk/include/llvm/ADT/STLExtras.h Sun Nov 29 19:24:17 2015
@@ -364,7 +364,7 @@ void DeleteContainerSeconds(Container &C
 }
 
 /// Provide wrappers to std::all_of which take ranges instead of having to pass
-/// being/end explicitly.
+/// begin/end explicitly.
 template<typename R, class UnaryPredicate>
 bool all_of(R &&Range, UnaryPredicate &&P) {
   return std::all_of(Range.begin(), Range.end(),




More information about the llvm-commits mailing list