Merge pull request #16 from BenWiederhake/develop

Fix a few typos
This commit is contained in:
Beman Dawes
2016-04-04 17:22:05 -04:00
4 changed files with 5 additions and 5 deletions

View File

@ -458,7 +458,7 @@ performing a lot of arithmetic operations on the endian arithmetic types.</p>
<p><b>What is gained by using the buffer types rather than always just using the <p><b>What is gained by using the buffer types rather than always just using the
arithmetic types?</b></p> arithmetic types?</b></p>
<blockquote> <blockquote>
<p>Assurance than hidden conversions are not performed. This is of overriding <p>Assurance that hidden conversions are not performed. This is of overriding
importance to users concerned about achieving the ultimate in terms of speed. </p> importance to users concerned about achieving the ultimate in terms of speed. </p>
<p>&quot;Always just using the arithmetic types&quot; is fine for other users. When the <p>&quot;Always just using the arithmetic types&quot; is fine for other users. When the
ultimate in speed needs to be ensured, the arithmetic types can be used in the ultimate in speed needs to be ensured, the arithmetic types can be used in the

View File

@ -50,7 +50,7 @@ namespace endian
//--------------------------------------------------------------------------------------// //--------------------------------------------------------------------------------------//
// customization for exact-length arithmetic types. See doc/conversion.html/#FAQ. // customization for exact-length arithmetic types. See doc/conversion.html/#FAQ.
// Note: The omission of an overloads for the arithmetic type (typically long, or // Note: The omission of a overloads for the arithmetic type (typically long, or
// long long) not assigned to one of the exact length typedefs is a deliberate // long long) not assigned to one of the exact length typedefs is a deliberate
// design decision. Such overloads would be non-portable and thus error prone. // design decision. Such overloads would be non-portable and thus error prone.
@ -98,7 +98,7 @@ namespace endian
//------------------------------------------------------------------------------------// //------------------------------------------------------------------------------------//
// Q: What happended to bswap, htobe, and the other synonym functions based on names // Q: What happened to bswap, htobe, and the other synonym functions based on names
// popularized by BSD, OS X, and Linux? // popularized by BSD, OS X, and Linux?
// A: Turned out these may be implemented as macros on some systems. Ditto POSIX names // A: Turned out these may be implemented as macros on some systems. Ditto POSIX names
// for such functionality. Since macros would cause endless problems with functions // for such functionality. Since macros would cause endless problems with functions

View File

@ -12,7 +12,7 @@
// This test probes operator overloading, including interaction between // This test probes operator overloading, including interaction between
// operand types. // operand types.
// See endian_test for tests of endianess correctness, size, and value. // See endian_test for tests of endianness correctness, size, and value.
#define BOOST_ENDIAN_LOG #define BOOST_ENDIAN_LOG

View File

@ -9,7 +9,7 @@
//----------------------------------------------------------------------------// //----------------------------------------------------------------------------//
// This test probes for correct endianess, size, and value. // This test probes for correct endianness, size, and value.
// See endian_operations_test for tests of operator correctness and interaction // See endian_operations_test for tests of operator correctness and interaction
// between operand types. // between operand types.