diff --git a/cpukit/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs b/cpukit/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs
index dfe7e90a8a..788b2fcece 100644
--- a/cpukit/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs
+++ b/cpukit/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs
@@ -1,7 +1,7 @@
//
// © Copyright Henrik Ravn 2004
//
-// Use, modification and distribution are subject to the Boost Software License, Version 1.0.
+// Use, modification and distribution are subject to the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
@@ -25,7 +25,7 @@ namespace DotZLib
protected uint _current;
///
- /// Initializes a new instance of the checksum generator base - the current checksum is
+ /// Initializes a new instance of the checksum generator base - the current checksum is
/// set to zero
///
public ChecksumGeneratorBase()
@@ -61,7 +61,7 @@ namespace DotZLib
/// The sum of offset and count is larger than the length of data
/// data is a null reference
/// Offset or count is negative.
- /// All the other Update methods are implmeneted in terms of this one.
+ /// All the other Update methods are implmeneted in terms of this one.
/// This is therefore the only method a derived class has to implement
public abstract void Update(byte[] data, int offset, int count);
@@ -101,7 +101,7 @@ namespace DotZLib
///
/// Implements a CRC32 checksum generator
///
- public sealed class CRC32Checksum : ChecksumGeneratorBase
+ public sealed class CRC32Checksum : ChecksumGeneratorBase
{
#region DLL imports
@@ -152,7 +152,7 @@ namespace DotZLib
///
/// Implements a checksum generator that computes the Adler checksum on data
///
- public sealed class AdlerChecksum : ChecksumGeneratorBase
+ public sealed class AdlerChecksum : ChecksumGeneratorBase
{
#region DLL imports