]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR libstdc++/81599
authormpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 31 Jul 2017 13:44:16 +0000 (13:44 +0000)
committermpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 31 Jul 2017 13:44:16 +0000 (13:44 +0000)
* include/bits/stl_stack.h: Fix typo.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@250743 138bc75d-0d04-0410-961f-82ee72b054a4

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

index c723b94875b7d1f266826d6472260ae2a9e174a7..e36ca828e544e40fec1a9ad66f30366cafad416d 100644 (file)
@@ -1,3 +1,8 @@
+2017-07-31  Marek Polacek  <polacek@redhat.com>
+
+       PR libstdc++/81599
+       * include/bits/stl_stack.h: Fix typo.
+
 2017-07-26  Jonathan Wakely  <jwakely@redhat.com>
 
        * testsuite/27_io/basic_fstream/53984.cc: Fix test.
index ac59ec715cf979c2d4a4b7f2fa7fb84208239857..5f2b4ab4486dd2e07f95c9482dfb6ab5a631a6d6 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.
    *