Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r76941 - in trunk/boost/iostreams: . detail detail/adapter detail/streambuf filter
From: dnljms_at_[hidden]
Date: 2012-02-07 15:42:26


Author: danieljames
Date: 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
New Revision: 76941
URL: http://svn.boost.org/trac/boost/changeset/76941

Log:
Iostreams: Fix typos in comments. Refs #6530.

Text files modified:
   trunk/boost/iostreams/chain.hpp | 2 +-
   trunk/boost/iostreams/close.hpp | 2 +-
   trunk/boost/iostreams/combine.hpp | 8 ++++----
   trunk/boost/iostreams/compose.hpp | 4 ++--
   trunk/boost/iostreams/detail/adapter/range_adapter.hpp | 2 +-
   trunk/boost/iostreams/detail/buffer.hpp | 4 ++--
   trunk/boost/iostreams/detail/restrict_impl.hpp | 6 +++---
   trunk/boost/iostreams/detail/streambuf/chainbuf.hpp | 2 +-
   trunk/boost/iostreams/filter/aggregate.hpp | 2 +-
   trunk/boost/iostreams/filter/counter.hpp | 2 +-
   trunk/boost/iostreams/filter/line.hpp | 2 +-
   trunk/boost/iostreams/invert.hpp | 4 ++--
   trunk/boost/iostreams/stream.hpp | 8 ++++----
   trunk/boost/iostreams/tee.hpp | 4 ++--
   14 files changed, 26 insertions(+), 26 deletions(-)

Modified: trunk/boost/iostreams/chain.hpp
==============================================================================
--- trunk/boost/iostreams/chain.hpp (original)
+++ trunk/boost/iostreams/chain.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -84,7 +84,7 @@
 //
 // 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.

Modified: trunk/boost/iostreams/close.hpp
==============================================================================
--- trunk/boost/iostreams/close.hpp (original)
+++ trunk/boost/iostreams/close.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -73,7 +73,7 @@
     boost::iostreams::close(t, snk, BOOST_IOS::out);
 }
 
-} // End namespaces detail.
+} // End namespace detail.
 
 } } // End namespaces iostreams, boost.
 

Modified: trunk/boost/iostreams/combine.hpp
==============================================================================
--- trunk/boost/iostreams/combine.hpp (original)
+++ trunk/boost/iostreams/combine.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -37,7 +37,7 @@
 //
 // 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 @@
 //
 // 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 @@
 //
 // 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.
 //

Modified: trunk/boost/iostreams/compose.hpp
==============================================================================
--- trunk/boost/iostreams/compose.hpp (original)
+++ trunk/boost/iostreams/compose.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -55,7 +55,7 @@
 //
 // 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 @@
 //
 // 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.
 //

Modified: trunk/boost/iostreams/detail/adapter/range_adapter.hpp
==============================================================================
--- trunk/boost/iostreams/detail/adapter/range_adapter.hpp (original)
+++ trunk/boost/iostreams/detail/adapter/range_adapter.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -36,7 +36,7 @@
 //
 // 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.
 //

Modified: trunk/boost/iostreams/detail/buffer.hpp
==============================================================================
--- trunk/boost/iostreams/detail/buffer.hpp (original)
+++ trunk/boost/iostreams/detail/buffer.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -30,7 +30,7 @@
 //
 // Template name: buffer
 // Description: Character buffer.
-// Template paramters:
+// Template parameters:
 // Ch - The character type.
 // Alloc - The Allocator type.
 //
@@ -69,7 +69,7 @@
 // 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,

Modified: trunk/boost/iostreams/detail/restrict_impl.hpp
==============================================================================
--- trunk/boost/iostreams/detail/restrict_impl.hpp (original)
+++ trunk/boost/iostreams/detail/restrict_impl.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -56,7 +56,7 @@
 //
 // 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 @@
 //
 // 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 @@
 //
 // 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>

Modified: trunk/boost/iostreams/detail/streambuf/chainbuf.hpp
==============================================================================
--- trunk/boost/iostreams/detail/streambuf/chainbuf.hpp (original)
+++ trunk/boost/iostreams/detail/streambuf/chainbuf.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -31,7 +31,7 @@
 // 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>

Modified: trunk/boost/iostreams/filter/aggregate.hpp
==============================================================================
--- trunk/boost/iostreams/filter/aggregate.hpp (original)
+++ trunk/boost/iostreams/filter/aggregate.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -33,7 +33,7 @@
 
 //
 // Template name: aggregate_filter.
-// Template paramters:
+// Template parameters:
 // Ch - The character type.
 // Alloc - The allocator type.
 // Description: Utility for defining DualUseFilters which filter an

Modified: trunk/boost/iostreams/filter/counter.hpp
==============================================================================
--- trunk/boost/iostreams/filter/counter.hpp (original)
+++ trunk/boost/iostreams/filter/counter.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -25,7 +25,7 @@
 
 //
 // Template name: basic_counter.
-// Template paramters:
+// Template parameters:
 // Ch - The character type.
 // Description: Filter which counts lines and characters.
 //

Modified: trunk/boost/iostreams/filter/line.hpp
==============================================================================
--- trunk/boost/iostreams/filter/line.hpp (original)
+++ trunk/boost/iostreams/filter/line.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -31,7 +31,7 @@
 
 //
 // 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.

Modified: trunk/boost/iostreams/invert.hpp
==============================================================================
--- trunk/boost/iostreams/invert.hpp (original)
+++ trunk/boost/iostreams/invert.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -36,7 +36,7 @@
 
 //
 // 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 @@
 
 //
 // Template name: invert.
-// Template paramters:
+// Template parameters:
 // Filter - A model of InputFilter or OutputFilter.
 // Description: Returns an instance of an appropriate specialization of inverse.
 //

Modified: trunk/boost/iostreams/stream.hpp
==============================================================================
--- trunk/boost/iostreams/stream.hpp (original)
+++ trunk/boost/iostreams/stream.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -31,7 +31,7 @@
     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 @@
                 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 @@
 };
 
 // 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 @@
 // 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.
 //

Modified: trunk/boost/iostreams/tee.hpp
==============================================================================
--- trunk/boost/iostreams/tee.hpp (original)
+++ trunk/boost/iostreams/tee.hpp 2012-02-07 15:42:25 EST (Tue, 07 Feb 2012)
@@ -31,7 +31,7 @@
 
 //
 // Template name: tee_filter.
-// Template paramters:
+// Template parameters:
 // Device - A blocking Sink.
 //
 template<typename Device>
@@ -99,7 +99,7 @@
 
 //
 // Template name: tee_device.
-// Template paramters:
+// Template parameters:
 // Device - A blocking Device.
 // Sink - A blocking Sink.
 //


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk