|
Boost-Commit : |
From: ramey_at_[hidden]
Date: 2008-06-09 00:02:43
Author: ramey
Date: 2008-06-09 00:02:42 EDT (Mon, 09 Jun 2008)
New Revision: 46266
URL: http://svn.boost.org/trac/boost/changeset/46266
Log:
fix typos in documentation
Text files modified:
trunk/libs/serialization/doc/archives.html | 22 +++++++++++-----------
1 files changed, 11 insertions(+), 11 deletions(-)
Modified: trunk/libs/serialization/doc/archives.html
==============================================================================
--- trunk/libs/serialization/doc/archives.html (original)
+++ trunk/libs/serialization/doc/archives.html 2008-06-09 00:02:42 EDT (Mon, 09 Jun 2008)
@@ -41,14 +41,14 @@
<h4><a name="saving_interface">Saving Archive Concept</a></h4>
<h4>Associated Types</h4>
Intuitively, a type modeling this concept will generate a sequence of bytes
-correpsonding to an arbitrary set of C++ data structures. Each type modeling the
+corresponding to an arbitrary set of C++ data structures. Each type modeling the
Saving Archive concept (SA) may be associated with another type modeling the
<a href="#loading_interface">Loading Archive Concept</a>(LA).
This associated type will perform the inverse operation.
That is, given a sequence of bytes generated by SA, it will generate a set of
-C++ data structures the is equivalent to the original.
+C++ data structures that is equivalent to the original.
The notion of equivalence is defined by the implementations of the pair of archives and the
-way the data is are rendered serializable.
+way the data are rendered serializable.
<p>
<h4>Valid Expressions</h4>
<dl>
@@ -190,8 +190,8 @@
moved to address v.
<p>
When an object is loaded to a temporary variable and later moved to another location,
- This function must be called in order communicate this fact. This is permits the
- the archive to properly implement object tracking. Object tracking is required in order
+ this function must be called in order communicate this fact. This permits the
+ archive to properly implement object tracking. Object tracking is required in order
to correctly implement serialization of pointers to instances of derived classes.
</dd>
<dt><h4><code>
@@ -215,7 +215,7 @@
<p>
The existence of the <code style="white-space: normal"><<</code>
-and <code style="white-space: normal">>></code> suggest
+and <code style="white-space: normal">>></code> suggests
a relationship between archives and C++ i/o streams. <strong>Archives are not
C++ i/o streams</strong>. All the archives included with this system take a stream
as an argument in the constructor and that stream is used for output or input.
@@ -224,7 +224,7 @@
found it useful to base their implementation on streams.
<h3><a name="archive_models">Archive Models</a></h3>
-This library includes a various implementation of the Archive concept.
+This library includes various implementations of the Archive concept.
An archive is defined by two complementary classes. One is for saving data while
the other is for loading it.
@@ -307,7 +307,7 @@
text_oarchive(std::ostream & os, unsigned int flags = 0);
</code></h4></dt>
<dd>
-Contructs an archive given an open <code style="white-space: normal">stream</code> as
+Constructs an archive given an open <code style="white-space: normal">stream</code> as
an argument and optional flags. For most applications there will be no need to use flags.
Flags are defined by <code style="white-space: normal">enum archive_flags</code> enumerator.
Multiple flags can be combined with the <code style="white-space: normal">|</code> operator.
@@ -339,7 +339,7 @@
<dd>
Destructor for an archive. This should be called before the stream is
closed. It restores any altered stream facets to their state before the
-the archive was opened.
+archive was opened.
</dd>
</dl>
@@ -402,12 +402,12 @@
<h3><a name="exceptions">Exceptions</h3>
All of the archive classes included may throw exceptions. The list of exceptions that might
-be throw can be found in section <a target="detail" href="exceptions.html">Archive Exceptions</a>
+be thrown can be found in section <a target="detail" href="exceptions.html">Archive Exceptions</a>
of this documentation.
<h3><a name="charactersets">Character Sets</h3>
This library includes two archive classes for XML. The wide character
-version (<code style="white-space: normal">xml_w?archive</code>) renders it output as UTF-8 which can
+version (<code style="white-space: normal">xml_w?archive</code>) renders its output as UTF-8 which can
handle any wide character without loss of information.
<code style="white-space: normal">std::string</code> data is converted from multi-byte format to wide
character format using the current <code style="white-space: normal">
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk