[pkg-boost-commits] r13993 - in boost/branches/debian-1.33.1:
boost/format boost/numeric/ublas boost/regex/v4 debian
doc/html libs/iostreams/doc libs/regex/doc
libs/variant/doc/reference tools/quickbook/doc
tools/quickbook/doc/html/quickbook
Domenico Andreoli
cavok at costa.debian.org
Thu Jul 20 10:45:53 UTC 2006
Author: cavok
Date: 2006-07-20 10:45:51 +0000 (Thu, 20 Jul 2006)
New Revision: 13993
Modified:
boost/branches/debian-1.33.1/boost/format/exceptions.hpp
boost/branches/debian-1.33.1/boost/numeric/ublas/matrix_expression.hpp
boost/branches/debian-1.33.1/boost/numeric/ublas/vector_expression.hpp
boost/branches/debian-1.33.1/boost/regex/v4/basic_regex.hpp
boost/branches/debian-1.33.1/debian/changelog
boost/branches/debian-1.33.1/doc/html/get.html
boost/branches/debian-1.33.1/libs/iostreams/doc/home.html
boost/branches/debian-1.33.1/libs/regex/doc/index.html
boost/branches/debian-1.33.1/libs/variant/doc/reference/get.xml
boost/branches/debian-1.33.1/tools/quickbook/doc/html/quickbook/syntax.html
boost/branches/debian-1.33.1/tools/quickbook/doc/quickbook.qbk
boost/branches/debian-1.33.1/tools/quickbook/doc/quickbook.xml
Log:
fixed some typos in source code. fixes #378016.
Modified: boost/branches/debian-1.33.1/boost/format/exceptions.hpp
===================================================================
--- boost/branches/debian-1.33.1/boost/format/exceptions.hpp 2006-07-20 10:35:18 UTC (rev 13992)
+++ boost/branches/debian-1.33.1/boost/format/exceptions.hpp 2006-07-20 10:45:51 UTC (rev 13993)
@@ -56,7 +56,7 @@
std::size_t get_expected() const { return expected_; }
virtual const char *what() const throw() {
return "boost::too_few_args: "
- "format-string refered to more arguments than were passed";
+ "format-string referred to more arguments than were passed";
}
};
@@ -70,7 +70,7 @@
std::size_t get_expected() const { return expected_; }
virtual const char *what() const throw() {
return "boost::too_many_args: "
- "format-string refered to less arguments than were passed";
+ "format-string referred to less arguments than were passed";
}
};
Modified: boost/branches/debian-1.33.1/boost/numeric/ublas/matrix_expression.hpp
===================================================================
--- boost/branches/debian-1.33.1/boost/numeric/ublas/matrix_expression.hpp 2006-07-20 10:35:18 UTC (rev 13992)
+++ boost/branches/debian-1.33.1/boost/numeric/ublas/matrix_expression.hpp 2006-07-20 10:45:51 UTC (rev 13993)
@@ -42,7 +42,7 @@
typedef typename boost::mpl::if_<boost::is_const<E>,
typename E::const_reference,
typename E::reference>::type reference;
- typedef E refered_type;
+ typedef E referred_type;
typedef const self_type const_closure_type;
typedef const_closure_type closure_type;
typedef typename E::orientation_category orientation_category;
@@ -50,7 +50,7 @@
// Construction and destruction
BOOST_UBLAS_INLINE
- explicit matrix_reference (refered_type &e):
+ explicit matrix_reference (referred_type &e):
e_ (e) {}
// Accessors
@@ -66,11 +66,11 @@
public:
// Expression accessors - const correct
BOOST_UBLAS_INLINE
- const refered_type &expression () const {
+ const referred_type &expression () const {
return e_;
}
BOOST_UBLAS_INLINE
- refered_type &expression () {
+ referred_type &expression () {
return e_;
}
@@ -269,7 +269,7 @@
}
private:
- refered_type &e_;
+ referred_type &e_;
};
Modified: boost/branches/debian-1.33.1/boost/numeric/ublas/vector_expression.hpp
===================================================================
--- boost/branches/debian-1.33.1/boost/numeric/ublas/vector_expression.hpp 2006-07-20 10:35:18 UTC (rev 13992)
+++ boost/branches/debian-1.33.1/boost/numeric/ublas/vector_expression.hpp 2006-07-20 10:45:51 UTC (rev 13993)
@@ -43,14 +43,14 @@
typedef typename boost::mpl::if_<boost::is_const<E>,
typename E::const_reference,
typename E::reference>::type reference;
- typedef E refered_type;
+ typedef E referred_type;
typedef const self_type const_closure_type;
typedef const_closure_type closure_type;
typedef typename E::storage_category storage_category;
// Construction and destruction
BOOST_UBLAS_INLINE
- explicit vector_reference (refered_type &e):
+ explicit vector_reference (referred_type &e):
e_ (e) {}
// Accessors
@@ -62,11 +62,11 @@
public:
// Expression accessors - const correct
BOOST_UBLAS_INLINE
- const refered_type &expression () const {
+ const referred_type &expression () const {
return e_;
}
BOOST_UBLAS_INLINE
- refered_type &expression () {
+ referred_type &expression () {
return e_;
}
@@ -227,7 +227,7 @@
}
private:
- refered_type &e_;
+ referred_type &e_;
};
Modified: boost/branches/debian-1.33.1/boost/regex/v4/basic_regex.hpp
===================================================================
--- boost/branches/debian-1.33.1/boost/regex/v4/basic_regex.hpp 2006-07-20 10:35:18 UTC (rev 13992)
+++ boost/branches/debian-1.33.1/boost/regex/v4/basic_regex.hpp 2006-07-20 10:45:51 UTC (rev 13993)
@@ -342,7 +342,7 @@
//
// getflags:
// retained for backwards compatibility only, "flags"
- // is now the prefered name:
+ // is now the preferred name:
flag_type BOOST_REGEX_CALL getflags()const
{
return flags();
Modified: boost/branches/debian-1.33.1/debian/changelog
===================================================================
--- boost/branches/debian-1.33.1/debian/changelog 2006-07-20 10:35:18 UTC (rev 13992)
+++ boost/branches/debian-1.33.1/debian/changelog 2006-07-20 10:45:51 UTC (rev 13993)
@@ -4,11 +4,14 @@
Closes: #358986.
* Added missing header in boost/bind.hpp. Closes: #376747.
-
+
* Fixed some unused parameter warnings. Closes: #372800.
- -- Domenico Andreoli <cavok at debian.org> Thu, 20 Jul 2006 12:33:49 +0200
+ * Fixed some typos in source code. Closes: #378016.
+ Patch courtesy of Roger Leigh.
+ -- Domenico Andreoli <cavok at debian.org> Thu, 20 Jul 2006 12:44:28 +0200
+
boost (1.33.1-4) unstable; urgency=low
* Graph library is built with -mlong-calls on hppa too.
Modified: boost/branches/debian-1.33.1/doc/html/get.html
===================================================================
--- boost/branches/debian-1.33.1/doc/html/get.html 2006-07-20 10:35:18 UTC (rev 13992)
+++ boost/branches/debian-1.33.1/doc/html/get.html 2006-07-20 10:45:51 UTC (rev 13993)
@@ -79,7 +79,7 @@
While visitation via
<code class="computeroutput"><a href="apply_visitor.html" title="Function apply_visitor">apply_visitor</a></code>
- is generally prefered due to its greater safety, <code class="computeroutput">get</code> may
+ is generally preferred due to its greater safety, <code class="computeroutput">get</code> may
may be more convenient in some cases due to its straightforward
usage.</p>
</div>
Modified: boost/branches/debian-1.33.1/libs/iostreams/doc/home.html
===================================================================
--- boost/branches/debian-1.33.1/libs/iostreams/doc/home.html 2006-07-20 10:35:18 UTC (rev 13992)
+++ boost/branches/debian-1.33.1/libs/iostreams/doc/home.html 2006-07-20 10:45:51 UTC (rev 13993)
@@ -95,11 +95,11 @@
namespace <CODE>boost::iostreams</CODE>, unless otherwise indicated. Namespace qualification is usually omitted.
</P>
<P>
- Specializations of <CODE>std::basic_istream</CODE> will be refered to as
+ Specializations of <CODE>std::basic_istream</CODE> will be referred to as
<SPAN CLASS="term">standard input streams</SPAN>, specializations of <CODE>std::basic_ostream</CODE>
as <SPAN CLASS="term">standard output streams</SPAN>, specializations of <CODE>std::basic_iostream</CODE>
as <SPAN CLASS="term">standard i/o streams</SPAN>, and specializations of <CODE>std::basic_streambuf</CODE>
- as <SPAN CLASS="term">standard stream buffers</SPAN>. Together, standard input streams, standard output streams and standard i/o streams will be refered to as <SPAN CLASS="term">standard streams</SPAN>. Sometimes the qualifier <I>standard</I> will be omitted.
+ as <SPAN CLASS="term">standard stream buffers</SPAN>. Together, standard input streams, standard output streams and standard i/o streams will be referred to as <SPAN CLASS="term">standard streams</SPAN>. Sometimes the qualifier <I>standard</I> will be omitted.
</P>
<!-- <UL>
@@ -107,11 +107,11 @@
All classes, functions and templates introduced in the documentation are in the namespace <CODE>boost::iostreams</CODE> unless otherwise indicated. Namespace qualification will usually be omitted.
</LI>
<LI CLASS="square">
- Specializations of <CODE>std::basic_istream</CODE> will be refered to as
+ Specializations of <CODE>std::basic_istream</CODE> will be referred to as
<SPAN CLASS="term">standard input streams</SPAN>, specializations of <CODE>std::basic_ostream</CODE>
as <SPAN CLASS="term">standard output streams</SPAN>, specializations of <CODE>std::basic_iostream</CODE>
as <SPAN CLASS="term">standard i/o streams</SPAN>, and specializations of <CODE>std::basic_streambuf</CODE>
- as <SPAN CLASS="term">standard stream buffers</SPAN>. Together, standard input streams, standard output streams and standard i/o streams will be refered to as <SPAN CLASS="term">standard streams</SPAN>. The qualifier <I>standard</I> will usually be omitted.
+ as <SPAN CLASS="term">standard stream buffers</SPAN>. Together, standard input streams, standard output streams and standard i/o streams will be referred to as <SPAN CLASS="term">standard streams</SPAN>. The qualifier <I>standard</I> will usually be omitted.
</LI>
</UL> -->
Modified: boost/branches/debian-1.33.1/libs/regex/doc/index.html
===================================================================
--- boost/branches/debian-1.33.1/libs/regex/doc/index.html 2006-07-20 10:35:18 UTC (rev 13992)
+++ boost/branches/debian-1.33.1/libs/regex/doc/index.html 2006-07-20 10:45:51 UTC (rev 13993)
@@ -31,7 +31,7 @@
and setup</a> <dt><a href="install.html">Installation</a>
<dd>
<dl class="index">
- <dt><a href="install.html#bjam">Building with bjam (prefered)</a>
+ <dt><a href="install.html#bjam">Building with bjam (preferred)</a>
<dt><a href="install.html#unicode">Building with Unicode/ICU support</a>
<dt><a href="install.html#make">Building via Makefiles</a>
<dd><dl class="index">
Modified: boost/branches/debian-1.33.1/libs/variant/doc/reference/get.xml
===================================================================
--- boost/branches/debian-1.33.1/libs/variant/doc/reference/get.xml 2006-07-20 10:35:18 UTC (rev 13992)
+++ boost/branches/debian-1.33.1/libs/variant/doc/reference/get.xml 2006-07-20 10:45:51 UTC (rev 13993)
@@ -136,7 +136,7 @@
<rationale>
<simpara>While visitation via
<code><functionname>apply_visitor</functionname></code>
- is generally prefered due to its greater safety, <code>get</code> may
+ is generally preferred due to its greater safety, <code>get</code> may
may be more convenient in some cases due to its straightforward
usage.</simpara>
</rationale>
Modified: boost/branches/debian-1.33.1/tools/quickbook/doc/html/quickbook/syntax.html
===================================================================
--- boost/branches/debian-1.33.1/tools/quickbook/doc/html/quickbook/syntax.html 2006-07-20 10:35:18 UTC (rev 13992)
+++ boost/branches/debian-1.33.1/tools/quickbook/doc/html/quickbook/syntax.html 2006-07-20 10:45:51 UTC (rev 13993)
@@ -197,7 +197,7 @@
<tbody><tr><td class="blurb">
<span class="inlinemediaobject"><img src="../images/note.png"></span>
Note that we simply enclose the code with the tick: <tt class="literal">"`"</tt>, not the
-single quote: <tt class="computeroutput"><span class="string">"'"</span></tt>. Note too that <tt class="literal">`some code`</tt> is prefered over
+single quote: <tt class="computeroutput"><span class="string">"'"</span></tt>. Note too that <tt class="literal">`some code`</tt> is preferred over
<tt class="literal">[^some code]</tt>.
</td></tr></tbody>
</table></div>
Modified: boost/branches/debian-1.33.1/tools/quickbook/doc/quickbook.qbk
===================================================================
--- boost/branches/debian-1.33.1/tools/quickbook/doc/quickbook.qbk 2006-07-20 10:35:18 UTC (rev 13992)
+++ boost/branches/debian-1.33.1/tools/quickbook/doc/quickbook.qbk 2006-07-20 10:45:51 UTC (rev 13993)
@@ -175,7 +175,7 @@
[blurb __note__
Note that we simply enclose the code with the tick: [^'''"`"'''], not the
-single quote: `"'"`. Note too that [^'''`some code`'''] is prefered over
+single quote: `"'"`. Note too that [^'''`some code`'''] is preferred over
[^'''[^some code]'''].
]
Modified: boost/branches/debian-1.33.1/tools/quickbook/doc/quickbook.xml
===================================================================
--- boost/branches/debian-1.33.1/tools/quickbook/doc/quickbook.xml 2006-07-20 10:35:18 UTC (rev 13992)
+++ boost/branches/debian-1.33.1/tools/quickbook/doc/quickbook.xml 2006-07-20 10:45:51 UTC (rev 13993)
@@ -199,7 +199,7 @@
<entry role="blurb">
<inlinemediaobject><imageobject><imagedata fileref="images/note.png"></imagedata></imageobject></inlinemediaobject>
Note that we simply enclose the code with the tick: <literal>"`"</literal>, not the
-single quote: <code><phrase role="string">"'"</phrase></code>. Note too that <literal>`some code`</literal> is prefered over
+single quote: <code><phrase role="string">"'"</phrase></code>. Note too that <literal>`some code`</literal> is preferred over
<literal>[^some code]</literal>.
</entry>
</row>
More information about the pkg-boost-commits
mailing list