[libcxx-commits] [libcxx] 936180a - [libc++][NFC] Fix typo in comment

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Mon Nov 27 07:35:17 PST 2023


Author: Louis Dionne
Date: 2023-11-27T10:35:07-05:00
New Revision: 936180a5e8816b2d02393b8faa535bcd37ac9b42

URL: https://github.com/llvm/llvm-project/commit/936180a5e8816b2d02393b8faa535bcd37ac9b42
DIFF: https://github.com/llvm/llvm-project/commit/936180a5e8816b2d02393b8faa535bcd37ac9b42.diff

LOG: [libc++][NFC] Fix typo in comment

Added: 
    

Modified: 
    libcxx/include/__algorithm/pstl_backend.h

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__algorithm/pstl_backend.h b/libcxx/include/__algorithm/pstl_backend.h
index dcb1c99e7962e63..a28e47dad8f399a 100644
--- a/libcxx/include/__algorithm/pstl_backend.h
+++ b/libcxx/include/__algorithm/pstl_backend.h
@@ -140,7 +140,7 @@ implemented, all the algorithms will eventually forward to the basis algorithms
   temlate <class _ExecutionPolicy, class _Iterator>
   optional<__iter_value_type<_Iterator>> __pstl_reduce(_Backend, _Iterator __first, _Iterator __last);
 
-  template <class _ExecuitonPolicy, class _Iterator, class _Tp>
+  template <class _ExecutionPolicy, class _Iterator, class _Tp>
   optional<__iter_
diff _t<_Iterator>> __pstl_count(_Backend, _Iterator __first, _Iterator __last, const _Tp& __value);
 
   template <class _ExecutionPolicy, class _Iterator, class _Predicate>


        


More information about the libcxx-commits mailing list