From: Sanjoy Das Date: Mon, 30 Nov 2015 01:24:17 +0000 (+0000) Subject: [ADT] Fix typo in comment X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4ab382c3c817523796942d45b595e4315f24362b;p=oota-llvm.git [ADT] Fix typo in comment git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254278 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/STLExtras.h b/include/llvm/ADT/STLExtras.h index fd4412c4166..1bd3b291e0e 100644 --- a/include/llvm/ADT/STLExtras.h +++ b/include/llvm/ADT/STLExtras.h @@ -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 bool all_of(R &&Range, UnaryPredicate &&P) { return std::all_of(Range.begin(), Range.end(),