Index: boost/graph/graph_concepts.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/graph/graph_concepts.hpp,v
retrieving revision 1.39
diff -u -r1.39 graph_concepts.hpp
--- boost/graph/graph_concepts.hpp 31 Oct 2004 19:55:14 -0000 1.39
+++ boost/graph/graph_concepts.hpp 23 Feb 2005 17:28:20 -0000
@@ -153,7 +153,7 @@
G g;
};
-// dwa 2003/7/11 -- This clearly shouldn't be neccessary, but if
+// dwa 2003/7/11 -- This clearly shouldn't be necessary, but if
// you want to use vector_as_graph, it is! I'm sure the graph
// library leaves these out all over the place. Probably a
// redesign involving specializing a template with a static
@@ -186,7 +186,7 @@
vertex_list_graph_tag> >();
#ifdef BOOST_VECTOR_AS_GRAPH_GRAPH_ADL_HACK
- // dwa 2003/7/11 -- This clearly shouldn't be neccessary, but if
+ // dwa 2003/7/11 -- This clearly shouldn't be necessary, but if
// you want to use vector_as_graph, it is! I'm sure the graph
// library leaves these out all over the place. Probably a
// redesign involving specializing a template with a static
@@ -199,7 +199,7 @@
}
void const_constraints(const G& cg) {
#ifdef BOOST_VECTOR_AS_GRAPH_GRAPH_ADL_HACK
- // dwa 2003/7/11 -- This clearly shouldn't be neccessary, but if
+ // dwa 2003/7/11 -- This clearly shouldn't be necessary, but if
// you want to use vector_as_graph, it is! I'm sure the graph
// library leaves these out all over the place. Probably a
// redesign involving specializing a template with a static
Index: boost/iterator/detail/config_def.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/iterator/detail/config_def.hpp,v
retrieving revision 1.9
diff -u -r1.9 config_def.hpp
--- boost/iterator/detail/config_def.hpp 3 Dec 2004 09:55:30 -0000 1.9
+++ boost/iterator/detail/config_def.hpp 23 Feb 2005 17:28:20 -0000
@@ -40,7 +40,7 @@
// end up using a proxy for operator[] when we otherwise shouldn't.
// Using reference constness gives it an extra hint that it can
// return the value_type from operator[] directly, but is not
-// strictly neccessary. Not sure how best to resolve this one.
+// strictly necessary. Not sure how best to resolve this one.
# define BOOST_ITERATOR_REF_CONSTNESS_KILLS_WRITABILITY 1
Index: boost/operators.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/operators.hpp,v
retrieving revision 1.22
diff -u -r1.22 operators.hpp
--- boost/operators.hpp 30 Jul 2004 04:46:55 -0000 1.22
+++ boost/operators.hpp 23 Feb 2005 17:28:21 -0000
@@ -674,7 +674,7 @@
// Here's where we put it all together, defining the xxxx forms of the templates
// in namespace boost. We also define specializations of is_chained_base<> for
// the xxxx, xxxx1, and xxxx2 templates, importing them into boost:: as
-// neccessary.
+// necessary.
//
#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
@@ -699,7 +699,7 @@
} // namespace boost
-// Import a 4-type-argument operator template into boost (if neccessary) and
+// Import a 4-type-argument operator template into boost (if necessary) and
// provide a specialization of 'is_chained_base<>' for it.
# define BOOST_OPERATOR_TEMPLATE4(template_name4) \
BOOST_IMPORT_TEMPLATE4(template_name4) \
@@ -708,7 +708,7 @@
typedef ::boost::detail::true_t value; \
};
-// Import a 3-type-argument operator template into boost (if neccessary) and
+// Import a 3-type-argument operator template into boost (if necessary) and
// provide a specialization of 'is_chained_base<>' for it.
# define BOOST_OPERATOR_TEMPLATE3(template_name3) \
BOOST_IMPORT_TEMPLATE3(template_name3) \
@@ -717,7 +717,7 @@
typedef ::boost::detail::true_t value; \
};
-// Import a 2-type-argument operator template into boost (if neccessary) and
+// Import a 2-type-argument operator template into boost (if necessary) and
// provide a specialization of 'is_chained_base<>' for it.
# define BOOST_OPERATOR_TEMPLATE2(template_name2) \
BOOST_IMPORT_TEMPLATE2(template_name2) \
@@ -726,7 +726,7 @@
typedef ::boost::detail::true_t value; \
};
-// Import a 1-type-argument operator template into boost (if neccessary) and
+// Import a 1-type-argument operator template into boost (if necessary) and
// provide a specialization of 'is_chained_base<>' for it.
# define BOOST_OPERATOR_TEMPLATE1(template_name1) \
BOOST_IMPORT_TEMPLATE1(template_name1) \
Index: boost/python/converter/registry.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/python/converter/registry.hpp,v
retrieving revision 1.16
diff -u -r1.16 registry.hpp
--- boost/python/converter/registry.hpp 26 Jul 2004 00:32:06 -0000 1.16
+++ boost/python/converter/registry.hpp 23 Feb 2005 17:28:21 -0000
@@ -17,7 +17,7 @@
// This namespace acts as a sort of singleton
namespace registry
{
- // Get the registration corresponding to the type, creating it if neccessary
+ // Get the registration corresponding to the type, creating it if necessary
BOOST_PYTHON_DECL registration const& lookup(type_info);
// Return a pointer to the corresponding registration, if one exists
Index: boost/python/object/iterator.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/python/object/iterator.hpp,v
retrieving revision 1.19
diff -u -r1.19 iterator.hpp
--- boost/python/object/iterator.hpp 20 Aug 2004 11:09:17 -0000 1.19
+++ boost/python/object/iterator.hpp 23 Feb 2005 17:28:21 -0000
@@ -109,7 +109,7 @@
namespace detail
{
// Get a Python class which contains the given iterator and
- // policies, creating it if neccessary. Requires: NextPolicies is
+ // policies, creating it if necessary. Requires: NextPolicies is
// default-constructible.
template Why do some function names have a "native_" prefix? To alert users that the results are inherently non-portable. The names are
deliberately ugly to discourage use except where really necessary. Why not support a concept of specific kinds of file systems, such as posix_file_system or windows_file_system. Why not support a concept of specific kinds of file systems, such as posix_file_system or windows_file_system? Portability is one of the one or two most important requirements for the
library. Gaining some advantage by using features specific to particular
operating systems is not a requirement. There doesn't appear to be much need for
@@ -192,4 +192,4 @@
Use, modification, and distribution are subject to the Boost Software
License, Version 1.0. (See accompanying file
LICENSE_1_0.txt or copy at
-www.boost.org/LICENSE_1_0.txt)
namespace boost
{
Index: libs/mpl/doc/tutorial/details.html
===================================================================
RCS file: /cvsroot/boost/boost/libs/mpl/doc/tutorial/details.html,v
retrieving revision 1.2
diff -u -r1.2 details.html
--- libs/mpl/doc/tutorial/details.html 28 Nov 2004 03:35:11 -0000 1.2
+++ libs/mpl/doc/tutorial/details.html 23 Feb 2005 17:28:21 -0000
@@ -105,8 +105,8 @@
to in lieu of using lambda and invoking the result "manually."
handle_exception
to manage exception
translation whenever your C++ code is called directly from the Python
API. This is done for you automatically by the usual function wrapping
Index: libs/python/doc/v2/type_id.html
===================================================================
RCS file: /cvsroot/boost/boost/libs/python/doc/v2/type_id.html,v
retrieving revision 1.4
diff -u -r1.4 type_id.html
--- libs/python/doc/v2/type_id.html 2 Nov 2004 19:46:46 -0000 1.4
+++ libs/python/doc/v2/type_id.html 23 Feb 2005 17:28:21 -0000
@@ -121,7 +121,7 @@
type_info
object which
identifies the same type as its argument.type_info
objects a benign default argument is
supplied. Note: this constructor does
not correct for non-conformance of compiler
Index: libs/python/doc/new-conversions.html
===================================================================
RCS file: /cvsroot/boost/boost/libs/python/doc/new-conversions.html,v
retrieving revision 1.4
diff -u -r1.4 new-conversions.html
--- libs/python/doc/new-conversions.html 5 Oct 2004 15:45:43 -0000 1.4
+++ libs/python/doc/new-conversions.html 23 Feb 2005 17:28:22 -0000
@@ -260,7 +260,7 @@
When we talk about the "members of Boost", we are talking about those signed up for this main mailing list.
Index: more/generic_programming.html =================================================================== RCS file: /cvsroot/boost/boost/more/generic_programming.html,v retrieving revision 1.24 diff -u -r1.24 generic_programming.html --- more/generic_programming.html 28 Nov 2004 04:34:09 -0000 1.24 +++ more/generic_programming.html 23 Feb 2005 17:28:22 -0000 @@ -75,7 +75,7 @@ not in an array? Perhaps it is in a linked list. Can we generalize the notion of copy to any sequence of elements? Looking at the body of memcpy(), the function's minimal requirements are - that it needs to to traverse through the sequence using some sort + that it needs to traverse through the sequence using some sort of pointer, access elements pointed to, write the elements to the destination, and compare pointers to know when to stop. The C++ standard library groups requirements such as these into Index: more/getting_started.html =================================================================== RCS file: /cvsroot/boost/boost/more/getting_started.html,v retrieving revision 1.23 diff -u -r1.23 getting_started.html --- more/getting_started.html 30 Dec 2004 00:53:20 -0000 1.23 +++ more/getting_started.html 23 Feb 2005 17:28:22 -0000 @@ -170,7 +170,7 @@ are using a Boost distribution is to download a prebuilt executable from SourceForge. If a prebuilt executable is not provided for your platform or you are using Boost's - sources in an unreleased state, it may be neccessary to + sources in an unreleased state, it may be necessary to build bjam from sources included in the Boost source tree. To install Boost.Jam, copy the bjam executable to a location accessible in your PATH. Index: tools/build/v1/python.jam =================================================================== RCS file: /cvsroot/boost/boost/tools/build/v1/python.jam,v retrieving revision 1.82 diff -u -r1.82 python.jam --- tools/build/v1/python.jam 19 Oct 2004 12:13:08 -0000 1.82 +++ tools/build/v1/python.jam 23 Feb 2005 17:28:23 -0000 @@ -571,11 +571,12 @@ ECHO "otherwise set:" ; ECHO ; ECHO " PYTHON_LIB_PATH - path to Python library object; currently" ; - ECHO " \""$(PYTHON_LIB_PATH:J=" ")\" ; + ECHO " \""$(PYTHON_LIB_PATH:J=" ")\" ; if ! $(NT) { - ECHO " PYTHON_INCLUDES - path to Python #include directories; currently" \"$(PYTHON_INCLUDES:J=" ")\" ; + ECHO " PYTHON_INCLUDES - path to Python #include directories; currently" ; + ECHO " \""$(PYTHON_INCLUDES:J=" ")\" ; } else if [ intersection $(TOOLS) : $(gcc-compilers) ] { Index: tools/build/v1/boost-base.jam =================================================================== RCS file: /cvsroot/boost/boost/tools/build/v1/boost-base.jam,v retrieving revision 1.145 diff -u -r1.145 boost-base.jam --- tools/build/v1/boost-base.jam 2 Feb 2005 19:58:01 -0000 1.145 +++ tools/build/v1/boost-base.jam 23 Feb 2005 17:28:23 -0000 @@ -488,7 +488,7 @@ # normalize-properties properties # # Normalizes a set of (possibly qualified) properties by prepending <*> as many -# times as neccessary to ensure that each property has at least 3 gristed elements. +# times as necessary to ensure that each property has at least 3 gristed elements. rule normalize-properties { local property ; @@ -710,7 +710,7 @@ # include-tools toolset # # Unconditionally process the specification file for the given toolset. It is -# neccessary to do this for each target built with that toolset, since the +# necessary to do this for each target built with that toolset, since the # toolset will invoke the flags rule to set global variables based on the build # properties of the target. rule include-tools @@ -757,7 +757,7 @@ # relevant-features toolset # # Returns the set of unique features relevant to the given toolset; includes the -# toolset description file as a side-effect if neccessary. +# toolset description file as a side-effect if necessary. rule relevant-features # name { if ! $(gRELEVANT_FEATURES($(<))) @@ -797,7 +797,7 @@ # Because properties in a variant declaration are only qualified with # toolset and not variant, we specify the toolset where # select-properties expects a variant name. The first toolset parameter - # is neccessary to get the relevant-features correctly set. We supply + # is necessary to get the relevant-features correctly set. We supply # the variant name as the target name, so that error messages will look # coherent. local name-properties @@ -919,7 +919,7 @@ } # For path properties, add a relative path prefix to the value as -# neccessary to locate the path relative to the given subproject +# necessary to locate the path relative to the given subproject # directory. rule fixup-path-properties ( properties * : subproject-directory ? ) { Index: tools/build/v1/gcc-tools.jam =================================================================== RCS file: /cvsroot/boost/boost/tools/build/v1/gcc-tools.jam,v retrieving revision 1.97 diff -u -r1.97 gcc-tools.jam --- tools/build/v1/gcc-tools.jam 2 Feb 2005 01:04:46 -0000 1.97 +++ tools/build/v1/gcc-tools.jam 23 Feb 2005 17:28:23 -0000 @@ -418,7 +418,7 @@ # This will appear before the import library name when building a DLL, but # will be "multiplied away" otherwise. The --exclude-symbols directive - # proved to be neccessary with some versions of Cygwin. + # proved to be necessary with some versions of Cygwin. DLL_LINK_FLAGS on $(<) += "-Wl,--exclude-symbols,_bss_end__:_bss_start__:_data_end__:_data_start__" ; # set the link command to generate an import library Index: tools/build/v1/sunpro-tools.html =================================================================== RCS file: /cvsroot/boost/boost/tools/build/v1/sunpro-tools.html,v retrieving revision 1.5 diff -u -r1.5 sunpro-tools.html --- tools/build/v1/sunpro-tools.html 5 Oct 2004 15:19:13 -0000 1.5 +++ tools/build/v1/sunpro-tools.html 23 Feb 2005 17:28:24 -0000 @@ -34,7 +34,7 @@ "http://wwws.sun.com/software/sundev/suncc/index.html">Sun ONE Studio compiler. This compiler has been known under several trade names including Sun WorkShop and Forte Developer. For convenience, this document will refer - to numbered releases of the compiler when differention is neccessary; this + to numbered releases of the compiler when differention is necessary; this release number can be obtained by runningCC ‑V
at the
command line.
Index: tools/build/v2/doc/src/advanced.xml
===================================================================
RCS file: /cvsroot/boost/boost/tools/build/v2/doc/src/advanced.xml,v
retrieving revision 1.24
diff -u -r1.24 advanced.xml
--- tools/build/v2/doc/src/advanced.xml 24 Jan 2005 10:08:06 -0000 1.24
+++ tools/build/v2/doc/src/advanced.xml 23 Feb 2005 17:28:24 -0000
@@ -155,7 +155,7 @@
init
must be callable
Index: tools/build/v2/doc/src/install.xml
===================================================================
RCS file: /cvsroot/boost/boost/tools/build/v2/doc/src/install.xml,v
retrieving revision 1.7
diff -u -r1.7 install.xml
--- tools/build/v2/doc/src/install.xml 28 Dec 2004 14:46:12 -0000 1.7
+++ tools/build/v2/doc/src/install.xml 23 Feb 2005 17:28:25 -0000
@@ -47,7 +47,7 @@
a prebuilt executable from SourceForge.
If a prebuilt executable is not provided for your platform
or you are using Boost's sources in an unreleased state, it
- may be neccessary to #include
paths to