From ea283d9ea5e9711f9fa0a10276166404d623d361 Mon Sep 17 00:00:00 2001 From: redi Date: Thu, 27 Mar 2014 18:22:38 +0000 Subject: * doc/xml/manual/containers.xml (associative.bitset.size_variable): Fix bad s/part/chapter/ substitutions. * doc/xml/manual/io.xml (std.io): Likewise. * doc/xml/manual/numerics.xml (std.numerics.generalized_ops): Likewise. * doc/xml/manual/strings.xml (strings.string.Cstring): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@208874 138bc75d-0d04-0410-961f-82ee72b054a4 --- libstdc++-v3/ChangeLog | 6 ++++++ libstdc++-v3/doc/xml/manual/containers.xml | 2 +- libstdc++-v3/doc/xml/manual/io.xml | 6 +++--- libstdc++-v3/doc/xml/manual/numerics.xml | 2 +- libstdc++-v3/doc/xml/manual/strings.xml | 2 +- 5 files changed, 12 insertions(+), 6 deletions(-) (limited to 'libstdc++-v3') diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4108b0d00d0..cc927da961f 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -9,6 +9,12 @@ Likewise. * doc/xml/manual/test.xml (test.organization.layout): Likewise. + * doc/xml/manual/containers.xml (associative.bitset.size_variable): + Fix bad s/part/chapter/ substitutions. + * doc/xml/manual/io.xml (std.io): Likewise. + * doc/xml/manual/numerics.xml (std.numerics.generalized_ops): Likewise. + * doc/xml/manual/strings.xml (strings.string.Cstring): Likewise. + 2014-03-27 Jonathan Wakely PR libstdc++/60612 diff --git a/libstdc++-v3/doc/xml/manual/containers.xml b/libstdc++-v3/doc/xml/manual/containers.xml index 653033da4d5..9fea0f7ea1c 100644 --- a/libstdc++-v3/doc/xml/manual/containers.xml +++ b/libstdc++-v3/doc/xml/manual/containers.xml @@ -232,7 +232,7 @@ There are a couple of ways to handle this kind of thing. Please consider all of them before passing judgement. They include, in - no chaptericular order: + no particular order: A very large N in bitset<N>. diff --git a/libstdc++-v3/doc/xml/manual/io.xml b/libstdc++-v3/doc/xml/manual/io.xml index 34e47ea73aa..5ae93b90041 100644 --- a/libstdc++-v3/doc/xml/manual/io.xml +++ b/libstdc++-v3/doc/xml/manual/io.xml @@ -424,7 +424,7 @@ Seriously, go do it. Get surprised, then come back. It's worth it. The thing to remember is that the basic_[io]stream classes - handle formatting, nothing else. In chaptericular, they break up on + handle formatting, nothing else. In particular, they break up on whitespace. The actual reading, writing, and storing of data is handled by the basic_streambuf family. Fortunately, the operator<< is overloaded to take an ostream and @@ -442,7 +442,7 @@ OUT << IN.rdbuf(); So what was happening with OUT<<IN? Undefined - behavior, since that chaptericular << isn't defined by the Standard. + behavior, since that particular << isn't defined by the Standard. I have seen instances where it is implemented, but the character extraction process removes all the whitespace, leaving you with no blank lines and only "Thequickbrownfox...". With @@ -659,7 +659,7 @@ Note, by the way, that the synchronization requirement only applies to the standard streams (cin, cout, cerr, - clog, and their wide-character counterchapters). File stream + clog, and their wide-character counterparts). File stream objects that you declare yourself have no such requirement and are fully buffered. diff --git a/libstdc++-v3/doc/xml/manual/numerics.xml b/libstdc++-v3/doc/xml/manual/numerics.xml index 495735502be..cc2615390f2 100644 --- a/libstdc++-v3/doc/xml/manual/numerics.xml +++ b/libstdc++-v3/doc/xml/manual/numerics.xml @@ -65,7 +65,7 @@ accumulate inner_product - chapterial_sum + partial_sum adjacent_difference Here is a simple example of the two forms of accumulate. diff --git a/libstdc++-v3/doc/xml/manual/strings.xml b/libstdc++-v3/doc/xml/manual/strings.xml index d281c02bd52..6a94fa22cb4 100644 --- a/libstdc++-v3/doc/xml/manual/strings.xml +++ b/libstdc++-v3/doc/xml/manual/strings.xml @@ -462,7 +462,7 @@ stringtok(Container &container, string const &in, if the implementors do it correctly. The libstdc++ implementors did it correctly. Other vendors might not. - While chapters of the SGI STL are used in libstdc++, their + While parts of the SGI STL are used in libstdc++, their string class is not. The SGI string is essentially vector<char> and does not do any reference counting like libstdc++'s does. (It is O(n), though.) -- cgit v1.2.1