]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Fix typo in doxygen comment
authorJonathan Wakely <jwakely@redhat.com>
Wed, 26 Apr 2023 22:38:43 +0000 (23:38 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Thu, 27 Apr 2023 14:42:02 +0000 (15:42 +0100)
libstdc++-v3/ChangeLog:

* include/bits/mofunc_impl.h: Fix typo in doxygen comment.

(cherry picked from commit 481281ccf41aa2bc596e548edaad4e57833f3340)

libstdc++-v3/include/bits/mofunc_impl.h

index 47e1e5063069c51518e0162ffe5506d8ad38e91d..318a55e618ff92dbd31268ea5fc5c56c2daf362b 100644 (file)
@@ -51,14 +51,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
    *  @headerfile functional
    *
    *  The `std::move_only_function` class template is a call wrapper similar
-   *  to *  `std::function`, but does not require the stored target function
+   *  to `std::function`, but does not require the stored target function
    *  to be copyable.
    *
    *  It also supports const-qualification, ref-qualification, and
    *  no-throw guarantees. The qualifications and exception-specification
    *  of the `move_only_function::operator()` member function are respected
    *  when invoking the target function.
-   *
    */
   template<typename _Res, typename... _ArgTypes, bool _Noex>
     class move_only_function<_Res(_ArgTypes...) _GLIBCXX_MOF_CV