summaryrefslogtreecommitdiff
path: root/boost/iostreams
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2013-08-26 08:15:55 -0400
committerAnas Nashif <anas.nashif@intel.com>2013-08-26 08:15:55 -0400
commitbb4dd8289b351fae6b55e303f189127a394a1edd (patch)
tree77c9c35a31b1459dd7988c2448e797d142530c41 /boost/iostreams
parent1a78a62555be32868418fe52f8e330c9d0f95d5a (diff)
downloadboost-bb4dd8289b351fae6b55e303f189127a394a1edd.tar.gz
boost-bb4dd8289b351fae6b55e303f189127a394a1edd.tar.bz2
boost-bb4dd8289b351fae6b55e303f189127a394a1edd.zip
Imported Upstream version 1.51.0upstream/1.51.0
Diffstat (limited to 'boost/iostreams')
-rw-r--r--boost/iostreams/chain.hpp2
-rw-r--r--boost/iostreams/close.hpp2
-rw-r--r--boost/iostreams/combine.hpp8
-rw-r--r--boost/iostreams/compose.hpp4
-rw-r--r--boost/iostreams/detail/adapter/range_adapter.hpp2
-rw-r--r--boost/iostreams/detail/buffer.hpp4
-rw-r--r--boost/iostreams/detail/restrict_impl.hpp6
-rw-r--r--boost/iostreams/detail/streambuf/chainbuf.hpp2
-rw-r--r--boost/iostreams/filter/aggregate.hpp2
-rw-r--r--boost/iostreams/filter/counter.hpp2
-rw-r--r--boost/iostreams/filter/line.hpp2
-rw-r--r--boost/iostreams/invert.hpp4
-rw-r--r--boost/iostreams/stream.hpp8
-rw-r--r--boost/iostreams/tee.hpp4
14 files changed, 26 insertions, 26 deletions
diff --git a/boost/iostreams/chain.hpp b/boost/iostreams/chain.hpp
index cea24beb86..4af8cc985c 100644
--- a/boost/iostreams/chain.hpp
+++ b/boost/iostreams/chain.hpp
@@ -84,7 +84,7 @@ template<typename Chain> class chain_client;
//
// Concept name: Chain.
// Description: Represents a chain of stream buffers which provides access
-// to the first buffer in the chain and send notifications when the
+// to the first buffer in the chain and sends notifications when the
// streambufs are added to or removed from chain.
// Refines: Closable device with mode equal to typename Chain::mode.
// Models: chain, converting_chain.
diff --git a/boost/iostreams/close.hpp b/boost/iostreams/close.hpp
index 3bb63e76e5..d0d186ecac 100644
--- a/boost/iostreams/close.hpp
+++ b/boost/iostreams/close.hpp
@@ -73,7 +73,7 @@ void close_all(T& t, Sink& snk)
boost::iostreams::close(t, snk, BOOST_IOS::out);
}
-} // End namespaces detail.
+} // End namespace detail.
} } // End namespaces iostreams, boost.
diff --git a/boost/iostreams/combine.hpp b/boost/iostreams/combine.hpp
index 250de2a65b..c404663031 100644
--- a/boost/iostreams/combine.hpp
+++ b/boost/iostreams/combine.hpp
@@ -37,7 +37,7 @@ namespace detail {
//
// Template name: combined_device.
// Description: Model of Device defined in terms of a Source/Sink pair.
-// Template paramters:
+// Template parameters:
// Source - A model of Source, with the same char_type and traits_type
// as Sink.
// Sink - A model of Sink, with the same char_type and traits_type
@@ -77,7 +77,7 @@ private:
//
// Template name: combined_filter.
// Description: Model of Device defined in terms of a Source/Sink pair.
-// Template paramters:
+// Template parameters:
// InputFilter - A model of InputFilter, with the same char_type as
// OutputFilter.
// OutputFilter - A model of OutputFilter, with the same char_type as
@@ -179,9 +179,9 @@ struct combine_traits {
//
// Template name: combine.
// Description: Takes a Source/Sink pair or InputFilter/OutputFilter pair and
-// returns a Reource or Filter which performs input using the first member
+// returns a Source or Filter which performs input using the first member
// of the pair and output using the second member of the pair.
-// Template paramters:
+// Template parameters:
// In - A model of Source or InputFilter, with the same char_type as Out.
// Out - A model of Sink or OutputFilter, with the same char_type as In.
//
diff --git a/boost/iostreams/compose.hpp b/boost/iostreams/compose.hpp
index 5bc5702ea9..dfc3df6658 100644
--- a/boost/iostreams/compose.hpp
+++ b/boost/iostreams/compose.hpp
@@ -55,7 +55,7 @@ struct composite_mode
//
// Template name: composite_device.
// Description: Provides a Device view of a Filter, Device pair.
-// Template paramters:
+// Template parameters:
// Filter - A model of Filter.
// Device - An indirect model of Device.
//
@@ -115,7 +115,7 @@ private:
//
// Template name: composite_device.
// Description: Provides a Device view of a Filter, Device pair.
-// Template paramters:
+// Template parameters:
// Filter - A model of Filter.
// Device - An indirect model of Device.
//
diff --git a/boost/iostreams/detail/adapter/range_adapter.hpp b/boost/iostreams/detail/adapter/range_adapter.hpp
index 1eb65c3bc3..4086d31867 100644
--- a/boost/iostreams/detail/adapter/range_adapter.hpp
+++ b/boost/iostreams/detail/adapter/range_adapter.hpp
@@ -36,7 +36,7 @@ template<typename Traversal> struct range_adapter_impl;
//
// Template name: range_adapter
// Description: Device based on an instance of boost::iterator_range.
-// Template paramters:
+// Template parameters:
// Mode - A mode tag.
// Range - An instance of iterator_range.
//
diff --git a/boost/iostreams/detail/buffer.hpp b/boost/iostreams/detail/buffer.hpp
index c830ae5bf7..1168289d91 100644
--- a/boost/iostreams/detail/buffer.hpp
+++ b/boost/iostreams/detail/buffer.hpp
@@ -30,7 +30,7 @@ namespace boost { namespace iostreams { namespace detail {
//
// Template name: buffer
// Description: Character buffer.
-// Template paramters:
+// Template parameters:
// Ch - The character type.
// Alloc - The Allocator type.
//
@@ -69,7 +69,7 @@ void swap(basic_buffer<Ch, Alloc>& lhs, basic_buffer<Ch, Alloc>& rhs)
// Template name: buffer
// Description: Character buffer with two pointers accessible via ptr() and
// eptr().
-// Template paramters:
+// Template parameters:
// Ch - A character type.
//
template< typename Ch,
diff --git a/boost/iostreams/detail/restrict_impl.hpp b/boost/iostreams/detail/restrict_impl.hpp
index 3175bf1f2a..aab9411462 100644
--- a/boost/iostreams/detail/restrict_impl.hpp
+++ b/boost/iostreams/detail/restrict_impl.hpp
@@ -56,7 +56,7 @@ namespace detail {
//
// Template name: restricted_indirect_device.
// Description: Provides an restricted view of an indirect Device.
-// Template paramters:
+// Template parameters:
// Device - An indirect model of Device that models either Source or
// SeekableDevice.
//
@@ -88,7 +88,7 @@ private:
//
// Template name: restricted_direct_device.
// Description: Provides an restricted view of a Direct Device.
-// Template paramters:
+// Template parameters:
// Device - A model of Direct and Device.
//
template<typename Device>
@@ -118,7 +118,7 @@ private:
//
// Template name: restricted_filter.
// Description: Provides an restricted view of a Filter.
-// Template paramters:
+// Template parameters:
// Filter - An indirect model of Filter.
//
template<typename Filter>
diff --git a/boost/iostreams/detail/streambuf/chainbuf.hpp b/boost/iostreams/detail/streambuf/chainbuf.hpp
index 9481c3a9d8..4e14383843 100644
--- a/boost/iostreams/detail/streambuf/chainbuf.hpp
+++ b/boost/iostreams/detail/streambuf/chainbuf.hpp
@@ -31,7 +31,7 @@ namespace boost { namespace iostreams { namespace detail {
// Template name: chainbuf.
// Description: Stream buffer which operates by delegating to the first
// linked_streambuf in a chain.
-// Template paramters:
+// Template parameters:
// Chain - The chain type.
//
template<typename Chain, typename Mode, typename Access>
diff --git a/boost/iostreams/filter/aggregate.hpp b/boost/iostreams/filter/aggregate.hpp
index d37e734507..d578582e6e 100644
--- a/boost/iostreams/filter/aggregate.hpp
+++ b/boost/iostreams/filter/aggregate.hpp
@@ -33,7 +33,7 @@ namespace boost { namespace iostreams {
//
// Template name: aggregate_filter.
-// Template paramters:
+// Template parameters:
// Ch - The character type.
// Alloc - The allocator type.
// Description: Utility for defining DualUseFilters which filter an
diff --git a/boost/iostreams/filter/counter.hpp b/boost/iostreams/filter/counter.hpp
index e47cba9417..646d2875a1 100644
--- a/boost/iostreams/filter/counter.hpp
+++ b/boost/iostreams/filter/counter.hpp
@@ -25,7 +25,7 @@ namespace boost { namespace iostreams {
//
// Template name: basic_counter.
-// Template paramters:
+// Template parameters:
// Ch - The character type.
// Description: Filter which counts lines and characters.
//
diff --git a/boost/iostreams/filter/line.hpp b/boost/iostreams/filter/line.hpp
index 9cdf7f7ee2..3597ef7898 100644
--- a/boost/iostreams/filter/line.hpp
+++ b/boost/iostreams/filter/line.hpp
@@ -31,7 +31,7 @@ namespace boost { namespace iostreams {
//
// Template name: line_filter.
-// Template paramters:
+// Template parameters:
// Ch - The character type.
// Alloc - The allocator type.
// Description: Filter which processes data one line at a time.
diff --git a/boost/iostreams/invert.hpp b/boost/iostreams/invert.hpp
index d88bf4c2ca..82e6a4b437 100644
--- a/boost/iostreams/invert.hpp
+++ b/boost/iostreams/invert.hpp
@@ -36,7 +36,7 @@ namespace boost { namespace iostreams {
//
// Template name: inverse.
-// Template paramters:
+// Template parameters:
// Filter - A model of InputFilter or OutputFilter.
// Description: Generates an InputFilter from an OutputFilter or
// vice versa.
@@ -151,7 +151,7 @@ private:
//
// Template name: invert.
-// Template paramters:
+// Template parameters:
// Filter - A model of InputFilter or OutputFilter.
// Description: Returns an instance of an appropriate specialization of inverse.
//
diff --git a/boost/iostreams/stream.hpp b/boost/iostreams/stream.hpp
index ac9f22547a..25f6a7d81d 100644
--- a/boost/iostreams/stream.hpp
+++ b/boost/iostreams/stream.hpp
@@ -31,7 +31,7 @@ struct stream_traits {
typedef Tr traits_type;
typedef typename category_of<Device>::type mode;
typedef typename
- iostreams::select< // Dismbiguation required for Tru64.
+ iostreams::select< // Disambiguation required for Tru64.
mpl::and_<
is_convertible<mode, input>,
is_convertible<mode, output>
@@ -43,7 +43,7 @@ struct stream_traits {
BOOST_IOSTREAMS_BASIC_OSTREAM(char_type, traits_type)
>::type stream_type;
typedef typename
- iostreams::select< // Dismbiguation required for Tru64.
+ iostreams::select< // Disambiguation required for Tru64.
mpl::and_<
is_convertible<mode, input>,
is_convertible<mode, output>
@@ -57,7 +57,7 @@ struct stream_traits {
};
// By encapsulating initialization in a base, we can define the macro
-// BOOST_IOSTREAMS_DEFINE_FORWARDING_FUNCTIONS to generate constuctors
+// BOOST_IOSTREAMS_DEFINE_FORWARDING_FUNCTIONS to generate constructors
// without base member initializer lists.
template< typename Device,
typename Tr =
@@ -96,7 +96,7 @@ namespace boost { namespace iostreams {
// Template name: stream.
// Description: A iostream which reads from and writes to an instance of a
// designated device type.
-// Template paramters:
+// Template parameters:
// Device - A device type.
// Alloc - The allocator type.
//
diff --git a/boost/iostreams/tee.hpp b/boost/iostreams/tee.hpp
index bcb60a862a..57a32ccd02 100644
--- a/boost/iostreams/tee.hpp
+++ b/boost/iostreams/tee.hpp
@@ -31,7 +31,7 @@ namespace boost { namespace iostreams {
//
// Template name: tee_filter.
-// Template paramters:
+// Template parameters:
// Device - A blocking Sink.
//
template<typename Device>
@@ -99,7 +99,7 @@ BOOST_IOSTREAMS_PIPABLE(tee_filter, 1)
//
// Template name: tee_device.
-// Template paramters:
+// Template parameters:
// Device - A blocking Device.
// Sink - A blocking Sink.
//