From: Jonathan Wakely Date: Mon, 4 Sep 2017 16:41:29 +0000 (+0100) Subject: PR libstdc++/81599 fix typo in Doxygen comments X-Git-Tag: releases/gcc-5.5.0~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da5667f12acacc3ea7792c86fd4d0d0530e1e6a1;p=thirdparty%2Fgcc.git PR libstdc++/81599 fix typo in Doxygen comments Backport from mainline 2017-07-31 Marek Polacek PR libstdc++/81599 * include/bits/stl_stack.h: Fix typo. From-SVN: r251670 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2e3b06351921..ec50f013ad6f 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,11 @@ 2017-09-04 Jonathan Wakely + Backport from mainline + 2017-07-31 Marek Polacek + + PR libstdc++/81599 + * include/bits/stl_stack.h: Fix typo. + Backport from mainline 2017-07-10 Jonathan Wakely diff --git a/libstdc++-v3/include/bits/stl_stack.h b/libstdc++-v3/include/bits/stl_stack.h index 3ff307ff6ad3..2c2206266757 100644 --- a/libstdc++-v3/include/bits/stl_stack.h +++ b/libstdc++-v3/include/bits/stl_stack.h @@ -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. *