[libcxx-commits] [libcxx] 04bf00c - [NFC][libc++][format] Fixes comment typos.

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Fri Feb 14 09:38:23 PST 2025


Author: Mark de Wever
Date: 2025-02-14T18:37:59+01:00
New Revision: 04bf00c7c4db7ab7c9d60cb0822400938afb4d52

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

LOG: [NFC][libc++][format] Fixes comment typos.

Added: 
    

Modified: 
    libcxx/include/__format/formatter.h

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__format/formatter.h b/libcxx/include/__format/formatter.h
index 39c2670dd8431..10c244b6d1895 100644
--- a/libcxx/include/__format/formatter.h
+++ b/libcxx/include/__format/formatter.h
@@ -28,8 +28,8 @@ _LIBCPP_BEGIN_NAMESPACE_STD
 /// - is_default_constructible_v<F>,
 /// - is_copy_constructible_v<F>,
 /// - is_move_constructible_v<F>,
-/// - is_copy_assignable<F>, and
-/// - is_move_assignable<F>.
+/// - is_copy_assignable_v<F>, and
+/// - is_move_assignable_v<F>.
 template <class _Tp, class _CharT>
 struct _LIBCPP_TEMPLATE_VIS formatter {
   formatter()                            = delete;


        


More information about the libcxx-commits mailing list