OSDN Git Service

[ADT] Fix typo in comment
authorSanjoy Das <sanjoy@playingwithpointers.com>
Mon, 30 Nov 2015 01:24:17 +0000 (01:24 +0000)
committerSanjoy Das <sanjoy@playingwithpointers.com>
Mon, 30 Nov 2015 01:24:17 +0000 (01:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254278 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/STLExtras.h

index fd4412c..1bd3b29 100644 (file)
@@ -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(),