From e0ff940e1adb68d3575705ebf1546d9f07ad3b4a Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 9 Sep 2011 23:27:17 -0700 Subject: zlib 1.2.3.8 --- contrib/dotzlib/DotZLib/ChecksumImpl.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'contrib/dotzlib/DotZLib/ChecksumImpl.cs') diff --git a/contrib/dotzlib/DotZLib/ChecksumImpl.cs b/contrib/dotzlib/DotZLib/ChecksumImpl.cs index dfe7e90..788b2fc 100644 --- a/contrib/dotzlib/DotZLib/ChecksumImpl.cs +++ b/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 -- cgit v1.2.3-55-g6feb