]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR libstdc++/81599 fix typo in Doxygen comments
authorJonathan Wakely <jwakely@redhat.com>
Mon, 4 Sep 2017 16:17:03 +0000 (17:17 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Mon, 4 Sep 2017 16:17:03 +0000 (17:17 +0100)
Backport from mainline
2017-07-31  Marek Polacek  <polacek@redhat.com>

PR libstdc++/81599
* include/bits/stl_stack.h: Fix typo.

From-SVN: r251666

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/stl_stack.h

index 5fdb68f32c61fb637020ff5ecc5e6f07ffb18266..13e6bb9f02f3d052e947607aa4dd8ab78ab0dbce 100644 (file)
@@ -1,5 +1,11 @@
 2017-09-04  Jonathan Wakely  <jwakely@redhat.com>
 
+       Backport from mainline
+       2017-07-31  Marek Polacek  <polacek@redhat.com>
+
+       PR libstdc++/81599
+       * include/bits/stl_stack.h: Fix typo.
+
        Backport from mainline
        2017-07-10  Jonathan Wakely  <jwakely@redhat.com>
 
index ea1d149b56c8119fb21bc4269dd5e592b8450b88..9b47b2154eb4b618efa57979d54eb219b84c1431 100644 (file)
@@ -86,7 +86,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
    *
    *  The second template parameter defines the type of the underlying
    *  sequence/container.  It defaults to std::deque, but it can be
-   *  any type that supports @c back, @c push_back, and @c pop_front,
+   *  any type that supports @c back, @c push_back, and @c pop_back,
    *  such as std::list, std::vector, or an appropriate user-defined
    *  type.
    *