[libcxx-commits] [libcxx] d95a6c9 - [libc++][NFC] Fix typo in synopsis comment

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Tue Oct 10 21:52:03 PDT 2023


Author: Louis Dionne
Date: 2023-10-10T21:51:21-07:00
New Revision: d95a6c949f92244f043bac4068374f6c084d6cc2

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

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

Added: 
    

Modified: 
    libcxx/include/functional

Removed: 
    


################################################################################
diff  --git a/libcxx/include/functional b/libcxx/include/functional
index 5c60b9fc39f461d..5f9e8fa82a891f8 100644
--- a/libcxx/include/functional
+++ b/libcxx/include/functional
@@ -34,7 +34,7 @@ struct binary_function
 template <class T>
 class reference_wrapper
     : public unary_function<T1, R> // if wrapping a unary functor
-    : public binary_function<T1, T2, R> // if wraping a binary functor
+    : public binary_function<T1, T2, R> // if wrapping a binary functor
 {
 public:
     // types


        


More information about the libcxx-commits mailing list