@@ -1371,7 +1370,7 @@ namespace boost{
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 +1462,7 @@ int test()
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 +1493,8 @@ int test()
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
diff --git a/configure b/configure
index c635eb7d..1e290ac1 100644
--- a/configure
+++ b/configure
@@ -1257,7 +1257,7 @@ Be patient - this could take some time...
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 @@ if test $enable_test = 'yes'; then
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 @@ EEEOF
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.
diff --git a/tools/configure.in b/tools/configure.in
index e855702e..21110cd2 100644
--- a/tools/configure.in
+++ b/tools/configure.in
@@ -1,5 +1,5 @@
#
-# the following variable contain our macro diffs:
+# the following variables contain our macro definitions:
#
required_defs=""
required_undefs=""
@@ -25,7 +25,7 @@ Be patient - this could take some time...
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 @@ if test $enable_test = 'yes'; then
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 @@ EEEOF
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.