From 4dfddca1e57c0dc2ea7bffbdafdf60f16911d6bc Mon Sep 17 00:00:00 2001 From: Michel Morin Date: Sat, 10 Mar 2012 18:06:04 +0000 Subject: [PATCH] Fix typos in docs [SVN r77295] --- doc/configuring_boost.qbk | 4 ++-- doc/guidelines.qbk | 2 +- doc/html/boost_config/boost_macro_reference.html | 6 +++--- doc/html/boost_config/guidelines_for_boost_authors.html | 2 +- doc/html/index.html | 4 ++-- doc/macro_reference.qbk | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/doc/configuring_boost.qbk b/doc/configuring_boost.qbk index dc3d933e..e6652642 100644 --- a/doc/configuring_boost.qbk +++ b/doc/configuring_boost.qbk @@ -346,8 +346,8 @@ configuration macros setting. In a case like this, you can define `BOOST_NO_COMPILER_CONFIG` either on the command line, or in __BOOST_CONFIG_USER_HEADER__, and miss out the compiler configuration header altogether (actually you miss out two headers, one which works out what the compiler is, and one that configures -boost for it). This has two consequences: the first is that less code has to be c -ompiled, and the second that you have removed a dependency on two boost headers. +boost for it). This has two consequences: the first is that less code has to be +compiled, and the second that you have removed a dependency on two boost headers. [endsect] diff --git a/doc/guidelines.qbk b/doc/guidelines.qbk index 83f6418e..93436457 100644 --- a/doc/guidelines.qbk +++ b/doc/guidelines.qbk @@ -62,7 +62,7 @@ majority of compilers, such as namespaces, exceptions, RTTI, or templates. [section:warnings Disabling Compiler Warnings] The header `` can be used to disable -certain compiler warings that are hard or impossible to otherwise remove. +certain compiler warnings that are hard or impossible to otherwise remove. Note that: diff --git a/doc/html/boost_config/boost_macro_reference.html b/doc/html/boost_config/boost_macro_reference.html index 3ab7045e..926c4ea9 100644 --- a/doc/html/boost_config/boost_macro_reference.html +++ b/doc/html/boost_config/boost_macro_reference.html @@ -2948,8 +2948,8 @@

This is a shortcut for static - BOOST_CONSTEXPR_OR_CONSTFor - example, when defining const expr variables replace: + BOOST_CONSTEXPR_OR_CONST. + For example, when defining const expr variables replace:

static constexpr UIntType xor_mask = a;
 
@@ -3293,7 +3293,7 @@

- When the standard library does not have a comforming std::use_facet there are various workarounds + When the standard library does not have a conforming std::use_facet there are various workarounds available, but they differ from library to library. This macro provides a consistent way to access a locale's facets. For example, replace: std::use_facet<Type>(loc); diff --git a/doc/html/boost_config/guidelines_for_boost_authors.html b/doc/html/boost_config/guidelines_for_boost_authors.html index c57f5c65..e461783e 100644 --- a/doc/html/boost_config/guidelines_for_boost_authors.html +++ b/doc/html/boost_config/guidelines_for_boost_authors.html @@ -110,7 +110,7 @@

The header <boost/config/warning_disable.hpp> - can be used to disable certain compiler warings that are hard or impossible + can be used to disable certain compiler warnings that are hard or impossible to otherwise remove.

diff --git a/doc/html/index.html b/doc/html/index.html index dcab4379..dcfff8da 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -770,7 +770,7 @@ and miss out the compiler configuration header altogether (actually you miss out two headers, one which works out what the compiler is, and one that configures boost for it). This has two consequences: the first is - that less code has to be c ompiled, and the second that you have removed + that less code has to be compiled, and the second that you have removed a dependency on two boost headers.

@@ -951,7 +951,7 @@ - +

Last revised: March 10, 2012 at 05:58:57 GMT

Last revised: March 10, 2012 at 18:02:52 GMT


diff --git a/doc/macro_reference.qbk b/doc/macro_reference.qbk index 832286af..e4413b72 100644 --- a/doc/macro_reference.qbk +++ b/doc/macro_reference.qbk @@ -670,7 +670,7 @@ with: `` ]] [[`BOOST_STATIC_CONSTEXPR`][ -This is a shortcut for `static BOOST_CONSTEXPR_OR_CONST`For example, when defining const expr variables replace: +This is a shortcut for `static BOOST_CONSTEXPR_OR_CONST`. For example, when defining const expr variables replace: `` static constexpr UIntType xor_mask = a; `` @@ -850,7 +850,7 @@ must be used when the macro invocation appears after a normal parameter declaration or after the invocation of another macro of this same group. ]] [[`BOOST_USE_FACET(Type, loc)`][ -When the standard library does not have a comforming `std::use_facet` there +When the standard library does not have a conforming `std::use_facet` there are various workarounds available, but they differ from library to library. This macro provides a consistent way to access a locale's facets. For example, replace: