Your message dated Thu, 20 Jul 2006 08:47:47 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#378016: fixed in boost 1.33.1-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: boost
Severity: normal
Tags: patch

The source code and documentation spells "referred" as "refered" and
"preferred" and "prefered".  This is not correct English, and is not
found in either British or American dictionaries.  This is included
in e.g. boost::program_options error messages, and does not look
very good.  It's also used in type and variable names.

I have attached patches against the current unstable sources and
upstream CVS.  Please could you forward upstream?


Thanks,
Roger

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.17
Locale: LANG=en_GB.UTF8, LC_CTYPE=en_GB.UTF8 (charmap=UTF-8)
diff -urN boost-1.33.1.original/boost/format/exceptions.hpp boost-1.33.1/boost/format/exceptions.hpp
--- boost-1.33.1.original/boost/format/exceptions.hpp	2004-01-24 17:30:23.000000000 +0000
+++ boost-1.33.1/boost/format/exceptions.hpp	2006-07-12 17:09:22.115743236 +0100
@@ -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";
             }
         };
 
diff -urN boost-1.33.1.original/boost/numeric/ublas/matrix_expression.hpp boost-1.33.1/boost/numeric/ublas/matrix_expression.hpp
--- boost-1.33.1.original/boost/numeric/ublas/matrix_expression.hpp	2005-07-13 06:57:37.000000000 +0100
+++ boost-1.33.1/boost/numeric/ublas/matrix_expression.hpp	2006-07-12 17:09:23.379373164 +0100
@@ -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_;
     };
 
 
diff -urN boost-1.33.1.original/boost/numeric/ublas/vector_expression.hpp boost-1.33.1/boost/numeric/ublas/vector_expression.hpp
--- boost-1.33.1.original/boost/numeric/ublas/vector_expression.hpp	2005-07-13 06:57:36.000000000 +0100
+++ boost-1.33.1/boost/numeric/ublas/vector_expression.hpp	2006-07-12 17:09:22.159869996 +0100
@@ -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_;
     };
 
 
diff -urN boost-1.33.1.original/boost/regex/v4/basic_regex.hpp boost-1.33.1/boost/regex/v4/basic_regex.hpp
--- boost-1.33.1.original/boost/regex/v4/basic_regex.hpp	2005-09-14 13:20:41.000000000 +0100
+++ boost-1.33.1/boost/regex/v4/basic_regex.hpp	2006-07-12 17:09:22.131789331 +0100
@@ -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();
diff -urN boost-1.33.1.original/doc/html/get.html boost-1.33.1/doc/html/get.html
--- boost-1.33.1.original/doc/html/get.html	2005-12-04 17:26:40.000000000 +0000
+++ boost-1.33.1/doc/html/get.html	2006-07-12 17:09:22.103708665 +0100
@@ -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>
diff -urN boost-1.33.1.original/libs/iostreams/doc/home.html boost-1.33.1/libs/iostreams/doc/home.html
--- boost-1.33.1.original/libs/iostreams/doc/home.html	2005-12-02 05:29:45.000000000 +0000
+++ boost-1.33.1/libs/iostreams/doc/home.html	2006-07-12 17:09:21.598256694 +0100
@@ -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> -->
 
diff -urN boost-1.33.1.original/libs/regex/doc/index.html boost-1.33.1/libs/regex/doc/index.html
--- boost-1.33.1.original/libs/regex/doc/index.html	2005-01-13 17:05:18.000000000 +0000
+++ boost-1.33.1/libs/regex/doc/index.html	2006-07-12 17:09:21.822902015 +0100
@@ -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">
diff -urN boost-1.33.1.original/libs/variant/doc/reference/get.xml boost-1.33.1/libs/variant/doc/reference/get.xml
--- boost-1.33.1.original/libs/variant/doc/reference/get.xml	2003-12-23 22:50:05.000000000 +0000
+++ boost-1.33.1/libs/variant/doc/reference/get.xml	2006-07-12 17:09:21.935224675 +0100
@@ -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>
diff -urN boost-1.33.1.original/tools/quickbook/doc/html/quickbook/syntax.html boost-1.33.1/tools/quickbook/doc/html/quickbook/syntax.html
--- boost-1.33.1.original/tools/quickbook/doc/html/quickbook/syntax.html	2005-07-12 08:46:58.000000000 +0100
+++ boost-1.33.1/tools/quickbook/doc/html/quickbook/syntax.html	2006-07-12 17:09:21.979351434 +0100
@@ -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>
diff -urN boost-1.33.1.original/tools/quickbook/doc/quickbook.qbk boost-1.33.1/tools/quickbook/doc/quickbook.qbk
--- boost-1.33.1.original/tools/quickbook/doc/quickbook.qbk	2005-04-30 02:48:44.000000000 +0100
+++ boost-1.33.1/tools/quickbook/doc/quickbook.qbk	2006-07-12 17:09:21.959293817 +0100
@@ -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]'''].
 ]
 
diff -urN boost-1.33.1.original/tools/quickbook/doc/quickbook.xml boost-1.33.1/tools/quickbook/doc/quickbook.xml
--- boost-1.33.1.original/tools/quickbook/doc/quickbook.xml	2005-02-14 06:36:16.000000000 +0000
+++ boost-1.33.1/tools/quickbook/doc/quickbook.xml	2006-07-12 17:09:22.087662571 +0100
@@ -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">&quot;'&quot;</phrase></code>. Note too that <literal>`some code`</literal> is prefered over
+single quote: <code><phrase role="string">&quot;'&quot;</phrase></code>. Note too that <literal>`some code`</literal> is preferred over
 <literal>[^some code]</literal>.
 </entry>
 </row>
Index: boost/format/exceptions.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/format/exceptions.hpp,v
retrieving revision 1.5
diff -u -r1.5 exceptions.hpp
--- boost/format/exceptions.hpp	24 Jan 2004 17:30:23 -0000	1.5
+++ boost/format/exceptions.hpp	12 Jul 2006 16:16:45 -0000
@@ -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";
             }
         };
 
Index: boost/numeric/ublas/matrix_expression.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/numeric/ublas/matrix_expression.hpp,v
retrieving revision 1.64
diff -u -r1.64 matrix_expression.hpp
--- boost/numeric/ublas/matrix_expression.hpp	6 Nov 2005 14:57:13 -0000	1.64
+++ boost/numeric/ublas/matrix_expression.hpp	12 Jul 2006 16:16:51 -0000
@@ -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 self_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_;
     };
 
 
Index: boost/numeric/ublas/vector_expression.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/numeric/ublas/vector_expression.hpp,v
retrieving revision 1.68
diff -u -r1.68 vector_expression.hpp
--- boost/numeric/ublas/vector_expression.hpp	6 Nov 2005 14:57:13 -0000	1.68
+++ boost/numeric/ublas/vector_expression.hpp	12 Jul 2006 16:16:53 -0000
@@ -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 self_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_;
     };
 
 
Index: boost/regex/v4/basic_regex.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/regex/v4/basic_regex.hpp,v
retrieving revision 1.19
diff -u -r1.19 basic_regex.hpp
--- boost/regex/v4/basic_regex.hpp	27 Oct 2005 10:24:50 -0000	1.19
+++ boost/regex/v4/basic_regex.hpp	12 Jul 2006 16:16:56 -0000
@@ -343,7 +343,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();
Index: libs/iostreams/doc/home.html
===================================================================
RCS file: /cvsroot/boost/boost/libs/iostreams/doc/home.html,v
retrieving revision 1.13
diff -u -r1.13 home.html
--- libs/iostreams/doc/home.html	12 Aug 2005 13:02:34 -0000	1.13
+++ libs/iostreams/doc/home.html	12 Jul 2006 16:16:59 -0000
@@ -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> -->
 
Index: libs/regex/doc/index.html
===================================================================
RCS file: /cvsroot/boost/boost/libs/regex/doc/index.html,v
retrieving revision 1.7
diff -u -r1.7 index.html
--- libs/regex/doc/index.html	13 Jan 2005 17:05:18 -0000	1.7
+++ libs/regex/doc/index.html	12 Jul 2006 16:17:03 -0000
@@ -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">
Index: libs/variant/doc/reference/get.xml
===================================================================
RCS file: /cvsroot/boost/boost/libs/variant/doc/reference/get.xml,v
retrieving revision 1.4
diff -u -r1.4 get.xml
--- libs/variant/doc/reference/get.xml	23 Dec 2003 22:50:05 -0000	1.4
+++ libs/variant/doc/reference/get.xml	12 Jul 2006 16:17:07 -0000
@@ -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>
Index: libs/xpressive/test/test_cycles.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/xpressive/test/test_cycles.cpp,v
retrieving revision 1.4
diff -u -r1.4 test_cycles.cpp
--- libs/xpressive/test/test_cycles.cpp	2 Jan 2006 07:03:04 -0000	1.4
+++ libs/xpressive/test/test_cycles.cpp	12 Jul 2006 16:17:08 -0000
@@ -21,7 +21,7 @@
 
 ///////////////////////////////////////////////////////////////////////////////
 // test_main
-// regexes refered to by other regexes are kept alive via reference counting.
+// regexes referred to by other regexes are kept alive via reference counting.
 // but cycles are handled naturally. the following works as expected and doesn't leak.
 int test_main( int, char*[] )
 {
Index: tools/build/v2/build/targets.jam
===================================================================
RCS file: /cvsroot/boost/boost/tools/build/v2/build/targets.jam,v
retrieving revision 1.196
diff -u -r1.196 targets.jam
--- tools/build/v2/build/targets.jam	19 May 2006 13:38:57 -0000	1.196
+++ tools/build/v2/build/targets.jam	12 Jul 2006 16:17:09 -0000
@@ -953,7 +953,7 @@
     local current = $(raw) ;
     
     # It's assumed that ordinary conditional requirements can't add
-    # <indirect-conditional> properties, and that rules refered
+    # <indirect-conditional> properties, and that rules referred
     # by <indirect-conditional> properties can't add new 
     # <indirect-conditional> properties. So the list of indirect conditionals
     # does not change.
Index: tools/quickbook/doc/quickbook.qbk
===================================================================
RCS file: /cvsroot/boost/boost/tools/quickbook/doc/quickbook.qbk,v
retrieving revision 1.43
diff -u -r1.43 quickbook.qbk
--- tools/quickbook/doc/quickbook.qbk	10 Jul 2006 11:03:48 -0000	1.43
+++ tools/quickbook/doc/quickbook.qbk	12 Jul 2006 16:17:11 -0000
@@ -300,7 +300,7 @@
 syntax highlighted.
 
 [note 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]''']. ]
 
 [endsect]
Index: tools/quickbook/doc/quickbook.xml
===================================================================
RCS file: /cvsroot/boost/boost/tools/quickbook/doc/quickbook.xml,v
retrieving revision 1.29
diff -u -r1.29 quickbook.xml
--- tools/quickbook/doc/quickbook.xml	19 Jan 2006 06:11:02 -0000	1.29
+++ tools/quickbook/doc/quickbook.xml	12 Jul 2006 16:17:12 -0000
@@ -399,7 +399,7 @@
                 </inlinemediaobject> Note that we simply enclose the code with the
                 tick: <literal>"`"</literal>, not the single quote: <code><phrase
                 role="string">&quot;'&quot;</phrase></code>. Note too that <literal>`some
-                code`</literal> is prefered over <literal>[^some code]</literal>.
+                code`</literal> is preferred over <literal>[^some code]</literal>.
                 </entry>
               </row>
             </tbody>
Index: tools/quickbook/doc/html/quickbook/syntax/phrase.html
===================================================================
RCS file: /cvsroot/boost/boost/tools/quickbook/doc/html/quickbook/syntax/phrase.html,v
retrieving revision 1.14
diff -u -r1.14 phrase.html
--- tools/quickbook/doc/html/quickbook/syntax/phrase.html	10 Jul 2006 11:03:48 -0000	1.14
+++ tools/quickbook/doc/html/quickbook/syntax/phrase.html	12 Jul 2006 16:17:12 -0000
@@ -273,7 +273,7 @@
 <tr><td colspan="2" align="left" valign="top"><p>
             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 <tt class="literal">[^some code]</tt>.
+            Note too that <tt class="literal">`some code`</tt> is preferred over <tt class="literal">[^some code]</tt>.
           </p></td></tr>
 </table></div>
 </div>
Index: tools/quickbook/test/quickbook-manual.gold
===================================================================
RCS file: /cvsroot/boost/boost/tools/quickbook/test/quickbook-manual.gold,v
retrieving revision 1.4
diff -u -r1.4 quickbook-manual.gold
--- tools/quickbook/test/quickbook-manual.gold	2 Jun 2006 16:48:36 -0000	1.4
+++ tools/quickbook/test/quickbook-manual.gold	12 Jul 2006 16:17:14 -0000
@@ -409,7 +409,7 @@
           </textobject>
           </inlinemediaobject> Note that we simply enclose the code with the tick:
           <literal><!--quickbook-escape-prefix-->"`"<!--quickbook-escape-postfix--></literal>, not the single quote: <code><phrase role="string">&quot;'&quot;</phrase></code>.
-          Note too that <literal><!--quickbook-escape-prefix-->`some code`<!--quickbook-escape-postfix--></literal> is prefered over <literal><!--quickbook-escape-prefix-->[^some code]<!--quickbook-escape-postfix--></literal>.
+          Note too that <literal><!--quickbook-escape-prefix-->`some code`<!--quickbook-escape-postfix--></literal> is preferred over <literal><!--quickbook-escape-prefix-->[^some code]<!--quickbook-escape-postfix--></literal>.
         </para>
       </section>
       <section id="quickbook.syntax.phrase.code_blocks">
Index: tools/quickbook/test/quickbook-manual.quickbook
===================================================================
RCS file: /cvsroot/boost/boost/tools/quickbook/test/quickbook-manual.quickbook,v
retrieving revision 1.2
diff -u -r1.2 quickbook-manual.quickbook
--- tools/quickbook/test/quickbook-manual.quickbook	3 Feb 2006 09:42:17 -0000	1.2
+++ tools/quickbook/test/quickbook-manual.quickbook	12 Jul 2006 16:17:15 -0000
@@ -297,7 +297,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]'''].
 ]
 

--- End Message ---
--- Begin Message ---
Source: boost
Source-Version: 1.33.1-5

We believe that the bug you reported is fixed in the latest version of
boost, which is due to be installed in the Debian FTP archive:

bcp_1.33.1-5_i386.deb
  to pool/main/b/boost/bcp_1.33.1-5_i386.deb
boost_1.33.1-5.diff.gz
  to pool/main/b/boost/boost_1.33.1-5.diff.gz
boost_1.33.1-5.dsc
  to pool/main/b/boost/boost_1.33.1-5.dsc
libboost-date-time-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-date-time-dev_1.33.1-5_i386.deb
libboost-date-time1.33.1_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-date-time1.33.1_1.33.1-5_i386.deb
libboost-dbg_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-dbg_1.33.1-5_i386.deb
libboost-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-dev_1.33.1-5_i386.deb
libboost-doc_1.33.1-5_all.deb
  to pool/main/b/boost/libboost-doc_1.33.1-5_all.deb
libboost-filesystem-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-filesystem-dev_1.33.1-5_i386.deb
libboost-filesystem1.33.1_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-filesystem1.33.1_1.33.1-5_i386.deb
libboost-graph-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-graph-dev_1.33.1-5_i386.deb
libboost-graph1.33.1_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-graph1.33.1_1.33.1-5_i386.deb
libboost-iostreams-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-iostreams-dev_1.33.1-5_i386.deb
libboost-iostreams1.33.1_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-iostreams1.33.1_1.33.1-5_i386.deb
libboost-program-options-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-program-options-dev_1.33.1-5_i386.deb
libboost-program-options1.33.1_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-program-options1.33.1_1.33.1-5_i386.deb
libboost-python-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-python-dev_1.33.1-5_i386.deb
libboost-python1.33.1_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-python1.33.1_1.33.1-5_i386.deb
libboost-regex-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-regex-dev_1.33.1-5_i386.deb
libboost-regex1.33.1_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-regex1.33.1_1.33.1-5_i386.deb
libboost-serialization-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-serialization-dev_1.33.1-5_i386.deb
libboost-signals-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-signals-dev_1.33.1-5_i386.deb
libboost-signals1.33.1_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-signals1.33.1_1.33.1-5_i386.deb
libboost-test-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-test-dev_1.33.1-5_i386.deb
libboost-test1.33.1_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-test1.33.1_1.33.1-5_i386.deb
libboost-thread-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-thread-dev_1.33.1-5_i386.deb
libboost-thread1.33.1_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-thread1.33.1_1.33.1-5_i386.deb
libboost-wave-dev_1.33.1-5_i386.deb
  to pool/main/b/boost/libboost-wave-dev_1.33.1-5_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Domenico Andreoli <[EMAIL PROTECTED]> (supplier of updated boost package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Thu, 20 Jul 2006 12:44:28 +0200
Source: boost
Binary: libboost-wave-dev libboost-date-time1.33.1 libboost-iostreams-dev 
libboost-test-dev libboost-graph1.33.1 libboost-serialization-dev 
libboost-thread1.33.1 libboost-signals1.33.1 libboost-regex1.33.1 
libboost-filesystem1.33.1 libboost-graph-dev libboost-python1.33.1 libboost-dev 
libboost-program-options1.33.1 libboost-python-dev libboost-dbg libboost-doc 
libboost-date-time-dev libboost-regex-dev libboost-program-options-dev 
libboost-signals-dev libboost-thread-dev libboost-filesystem-dev 
libboost-test1.33.1 libboost-iostreams1.33.1 bcp
Architecture: source all i386
Version: 1.33.1-5
Distribution: unstable
Urgency: low
Maintainer: Debian Boost Team <[EMAIL PROTECTED]>
Changed-By: Domenico Andreoli <[EMAIL PROTECTED]>
Description: 
 bcp        - tool for extracting subsets of Boost C++ Libraries
 libboost-date-time-dev - set of date-time libraries based on generic 
programming concepts
 libboost-date-time1.33.1 - set of date-time libraries based on generic 
programming concepts
 libboost-dbg - Boost C++ Libraries with debug symbols
 libboost-dev - Boost C++ Libraries development files
 libboost-doc - Boost.org libraries documentation
 libboost-filesystem-dev - filesystem operations (portable paths, iteration 
over directories
 libboost-filesystem1.33.1 - filesystem operations (portable paths, iteration 
over directories
 libboost-graph-dev - generic graph components and algorithms in C++
 libboost-graph1.33.1 - generic graph components and algorithms in C++
 libboost-iostreams-dev - Boost.Iostreams Library development files
 libboost-iostreams1.33.1 - Boost.Iostreams Library
 libboost-program-options-dev - program options library for C++
 libboost-program-options1.33.1 - program options library for C++
 libboost-python-dev - Boost.Python Library development files
 libboost-python1.33.1 - Boost.Python Library
 libboost-regex-dev - regular expression library for C++
 libboost-regex1.33.1 - regular expression library for C++
 libboost-serialization-dev - serialization library for C++
 libboost-signals-dev - managed signals and slots library for C++
 libboost-signals1.33.1 - managed signals and slots library for C++
 libboost-test-dev - components for writing and executing test suites
 libboost-test1.33.1 - components for writing and executing test suites
 libboost-thread-dev - portable C++ multi-threading
 libboost-thread1.33.1 - portable C++ multi-threading
 libboost-wave-dev - C99/C++ preprocessor library
Closes: 358986 372800 376747 378016
Changes: 
 boost (1.33.1-5) unstable; urgency=low
 .
   * CSS file for HTML documentation is now correctly installed.
     Closes: #358986.
 .
   * Added missing header in boost/bind.hpp.  Closes: #376747.
 .
   * Fixed some unused parameter warnings.  Closes: #372800.
 .
   * Fixed some typos in source code.  Closes: #378016.
     Patch courtesy of Roger Leigh.
Files: 
 618727f44a9ff399fc1bad3c418213b4 1369 libs optional boost_1.33.1-5.dsc
 ac1e99b7d9bd236f074855fb48d337cc 60679 libs optional boost_1.33.1-5.diff.gz
 a3c95730531a58c9d87cb374fe61d066 8296086 doc optional 
libboost-doc_1.33.1-5_all.deb
 fead4c500c3a091ec17307c784ec663a 190658 libdevel optional bcp_1.33.1-5_i386.deb
 039033da9453041630df3a2a82dc6aac 10159864 libdevel optional 
libboost-dbg_1.33.1-5_i386.deb
 8850147e8809652e9565cd5e18a5d2e9 1656278 libdevel optional 
libboost-dev_1.33.1-5_i386.deb
 a03f0d5611a35215c3da812e4547ee52 53592 libs optional 
libboost-date-time1.33.1_1.33.1-5_i386.deb
 02ceb2360eeddae5e160f44a083f4c5b 180506 libdevel optional 
libboost-date-time-dev_1.33.1-5_i386.deb
 7dfa90aa2f02c89dd880e91a49d27971 67048 libs optional 
libboost-filesystem1.33.1_1.33.1-5_i386.deb
 0fe9e19930cf82fadd267f159cfe8e60 77028 libdevel optional 
libboost-filesystem-dev_1.33.1-5_i386.deb
 530a86ec777f02394f748970eb735014 457376 libs optional 
libboost-graph1.33.1_1.33.1-5_i386.deb
 6a9f8ac15e55120bed9ce69e9f89fb59 1013958 libdevel optional 
libboost-graph-dev_1.33.1-5_i386.deb
 eb819bde0ca02eb9f9eb784209d2c9f3 27976 libs optional 
libboost-iostreams1.33.1_1.33.1-5_i386.deb
 f8fc6f730065f9944c504def8c25dae9 103814 libdevel optional 
libboost-iostreams-dev_1.33.1-5_i386.deb
 5ad5402a2b8ea1565e798895dd5c58d4 186906 libs optional 
libboost-program-options1.33.1_1.33.1-5_i386.deb
 395a65e9822ef0d16aede12d0447f416 269986 libdevel optional 
libboost-program-options-dev_1.33.1-5_i386.deb
 f5424bad4d4bdc9a5379444e571a2405 180426 python optional 
libboost-python1.33.1_1.33.1-5_i386.deb
 ddb90d2b4a2bc13af4802eb72842e11d 138332 libdevel optional 
libboost-python-dev_1.33.1-5_i386.deb
 064cc622e8c5cae751c2fb9d0b5d5d0a 539662 libs optional 
libboost-regex1.33.1_1.33.1-5_i386.deb
 00e0bf2148f7e1d551907e4464713848 1066790 libdevel optional 
libboost-regex-dev_1.33.1-5_i386.deb
 768ca4114d5685307587b6fe4fdf7817 624394 libdevel optional 
libboost-serialization-dev_1.33.1-5_i386.deb
 5141adc75dc8f90cbab48e0339684436 63330 libs optional 
libboost-signals1.33.1_1.33.1-5_i386.deb
 38a45a1235c4aa0b2184104dc84a3a32 84264 libdevel optional 
libboost-signals-dev_1.33.1-5_i386.deb
 04cecc1e0c447313aaed0f3f9f6cc8dc 325958 libs optional 
libboost-test1.33.1_1.33.1-5_i386.deb
 bfe95de0a7fb20c1c67c48f0be7fccfc 547582 libdevel optional 
libboost-test-dev_1.33.1-5_i386.deb
 b55dd2f3b43a81c525a16e21bdf0500c 31578 libs optional 
libboost-thread1.33.1_1.33.1-5_i386.deb
 bfe862b422865ff5e4cf8dc2b174e0e5 39962 libdevel optional 
libboost-thread-dev_1.33.1-5_i386.deb
 719ac37a748da8b0de0b1b2f3da1593e 441948 libdevel optional 
libboost-wave-dev_1.33.1-5_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQFEv6EHBneQM6IOvFARAkuZAKCMfMIRHedbwrO98IldRz4a4EyaZwCguWko
L6s2KP74IWxxd/LhFrHTgTk=
=DKmD
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to