@@ -1371,7 +1371,7 @@
Adding New Defect Macros
When you need to add a new defect macro - either to fix a problem with an
existing library, or when adding a new library - distil the issue down to a
- simple test case, often at this point other (possibly better) workarounds may
+ simple test case; often, at this point, other (possibly better) workarounds may
become apparent. Secondly always post the test case code to the boost mailing
list and invite comments; remember that C++ is complex and that sometimes what
may appear a defect, may in fact turn out to be a problem with the authors
@@ -1463,7 +1463,7 @@
Consider a situation in which you are concurrently developing on multiple
platforms. Then consider adding a new platform or changing the platform
definitions of an existing platform. What happens? Everything, and this does
- literally mean everything, recompiles.. Isn't it quite absurd that adding a new
+ literally mean everything, recompiles. Isn't it quite absurd that adding a new
platform, which has absolutely nothing to do with previously existing
platforms, means that all code on all existing platforms needs to be
recompiled?
@@ -1494,8 +1494,8 @@
The approach taken by boost's configuration headers is to separate
configuration into three orthogonal parts: the compiler, the standard library
and the platform. Each compiler/standard library/platform gets its own
- mini-configuration header, so that change to one compiler's configuration (for
- example) does not effect other compilers. In addition there are measures that
+ mini-configuration header, so that changes to one compiler's configuration (for
+ example) does not affect other compilers. In addition there are measures that
can be taken both to omit the compiler/standard library/platform detection code
(so that adding support to a new platform does not break dependencies), or to
freeze the configuration completely; providing almost complete protection
Index: libs/config/configure
===================================================================
RCS file: /cvsroot/boost/boost/libs/config/configure,v
retrieving revision 1.26
diff -u -r1.26 configure
--- libs/config/configure 13 Jan 2005 10:59:39 -0000 1.26
+++ libs/config/configure 27 Feb 2005 18:56:02 -0000
@@ -1257,7 +1257,7 @@
Note that this test script only gives an approximate
configuration - you will need to test the results carefully
-using the boost regresion test suite before using the results.
+using the boost regression test suite before using the results.
EOF
if test $enable_test = 'yes'; then
@@ -1265,8 +1265,8 @@
cat << EOF
This script reports only the difference between the detected
-configuration, and the existing boost configuration. It's
-primary aim is to quicky report how well boost is configured
+configuration, and the existing boost configuration. Its
+primary aim is to quickly report how well boost is configured
for one compiler.
***
@@ -3271,7 +3271,7 @@
cat << EEEOF
Adjustments to boost configuration have been written to
-user.hpp, copy this to boost/config/user.hpp to use "as is",
+user.hpp. Copy this to boost/config/user.hpp to use "as is",
or define BOOST_SITE_CONFIG to point to its location.
TREAT THIS FILE WITH CARE.
Index: libs/config/tools/configure.in
===================================================================
RCS file: /cvsroot/boost/boost/libs/config/tools/configure.in,v
retrieving revision 1.15
diff -u -r1.15 configure.in
--- libs/config/tools/configure.in 13 Jan 2005 10:59:43 -0000 1.15
+++ libs/config/tools/configure.in 27 Feb 2005 18:56:02 -0000
@@ -1,5 +1,5 @@
#
-# the following variable contain our macro diffs:
+# the following variables contain our macro diffs:
#
required_defs=""
required_undefs=""
@@ -25,7 +25,7 @@
Note that this test script only gives an approximate
configuration - you will need to test the results carefully
-using the boost regresion test suite before using the results.
+using the boost regression test suite before using the results.
EOF
if test $enable_test = 'yes'; then
@@ -33,8 +33,8 @@
cat << EOF
This script reports only the difference between the detected
-configuration, and the existing boost configuration. It's
-primary aim is to quicky report how well boost is configured
+configuration, and the existing boost configuration. Its
+primary aim is to quickly report how well boost is configured
for one compiler.
***
@@ -401,7 +401,7 @@
cat << EEEOF
Adjustments to boost configuration have been written to
-user.hpp, copy this to boost/config/user.hpp to use "as is",
+user.hpp. Copy this to boost/config/user.hpp to use "as is",
or define BOOST_SITE_CONFIG to point to its location.
TREAT THIS FILE WITH CARE.
@@ -415,29 +415,3 @@
)
fi
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Index: libs/filesystem/doc/exception.htm
===================================================================
RCS file: /cvsroot/boost/boost/libs/filesystem/doc/exception.htm,v
retrieving revision 1.11
diff -u -r1.11 exception.htm
--- libs/filesystem/doc/exception.htm 5 Oct 2004 15:45:20 -0000 1.11
+++ libs/filesystem/doc/exception.htm 27 Feb 2005 18:56:02 -0000
@@ -125,7 +125,7 @@
appropriate:
- boost::filesystem::class-name::function-name for errors from public
- member functions
+ member functions.
- boost::filesystem::class-name for errors not identified with a
particular member function.
- boost::filesystem::function-name for errors from non-member functions.
@@ -203,4 +203,4 @@