aboutsummaryrefslogtreecommitdiff
path: root/contrib/dotzlib/DotZLib/ChecksumImpl.cs
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2023-02-02 15:50:00 +0100
committerMark Adler <madler@alumni.caltech.edu>2023-08-03 13:53:24 -0700
commitc7ddcc2e0e8bb397ad720564228b538135ec11d8 (patch)
treee573e8efe22a097b7d18319971b4ca9b20f38ba8 /contrib/dotzlib/DotZLib/ChecksumImpl.cs
parent2bcc74873527f2ad9d3079ba6eff15c0eadc8910 (diff)
downloadzlib-c7ddcc2e0e8bb397ad720564228b538135ec11d8.tar.gz
zlib-c7ddcc2e0e8bb397ad720564228b538135ec11d8.tar.bz2
zlib-c7ddcc2e0e8bb397ad720564228b538135ec11d8.zip
Fix some spelling errors.
Diffstat (limited to 'contrib/dotzlib/DotZLib/ChecksumImpl.cs')
-rw-r--r--contrib/dotzlib/DotZLib/ChecksumImpl.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/dotzlib/DotZLib/ChecksumImpl.cs b/contrib/dotzlib/DotZLib/ChecksumImpl.cs
index 788b2fc..c1230bf 100644
--- a/contrib/dotzlib/DotZLib/ChecksumImpl.cs
+++ b/contrib/dotzlib/DotZLib/ChecksumImpl.cs
@@ -61,7 +61,7 @@ namespace DotZLib
61 /// <exception cref="ArgumentException">The sum of offset and count is larger than the length of <c>data</c></exception> 61 /// <exception cref="ArgumentException">The sum of offset and count is larger than the length of <c>data</c></exception>
62 /// <exception cref="NullReferenceException"><c>data</c> is a null reference</exception> 62 /// <exception cref="NullReferenceException"><c>data</c> is a null reference</exception>
63 /// <exception cref="ArgumentOutOfRangeException">Offset or count is negative.</exception> 63 /// <exception cref="ArgumentOutOfRangeException">Offset or count is negative.</exception>
64 /// <remarks>All the other <c>Update</c> methods are implmeneted in terms of this one. 64 /// <remarks>All the other <c>Update</c> methods are implemented in terms of this one.
65 /// This is therefore the only method a derived class has to implement</remarks> 65 /// This is therefore the only method a derived class has to implement</remarks>
66 public abstract void Update(byte[] data, int offset, int count); 66 public abstract void Update(byte[] data, int offset, int count);
67 67