summaryrefslogtreecommitdiff
path: root/contrib/dotzlib/DotZLib/CodecBase.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/CodecBase.cs
parent2bcc74873527f2ad9d3079ba6eff15c0eadc8910 (diff)
downloadzlib-c7ddcc2e0e8bb397ad720564228b538135ec11d8.tar.gz
zlib-c7ddcc2e0e8bb397ad720564228b538135ec11d8.tar.bz2
zlib-c7ddcc2e0e8bb397ad720564228b538135ec11d8.zip
Fix some spelling errors.
Diffstat (limited to 'contrib/dotzlib/DotZLib/CodecBase.cs')
-rw-r--r--contrib/dotzlib/DotZLib/CodecBase.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/dotzlib/DotZLib/CodecBase.cs b/contrib/dotzlib/DotZLib/CodecBase.cs
index 42e6da3..c4bc8b8 100644
--- a/contrib/dotzlib/DotZLib/CodecBase.cs
+++ b/contrib/dotzlib/DotZLib/CodecBase.cs
@@ -139,7 +139,7 @@ namespace DotZLib
139 /// <remarks>This must be implemented by a derived class</remarks> 139 /// <remarks>This must be implemented by a derived class</remarks>
140 protected abstract void CleanUp(); 140 protected abstract void CleanUp();
141 141
142 // performs the release of the handles and calls the dereived CleanUp() 142 // performs the release of the handles and calls the derived CleanUp()
143 private void CleanUp(bool isDisposing) 143 private void CleanUp(bool isDisposing)
144 { 144 {
145 if (!_isDisposed) 145 if (!_isDisposed)
@@ -160,7 +160,7 @@ namespace DotZLib
160 #region Helper methods 160 #region Helper methods
161 161
162 /// <summary> 162 /// <summary>
163 /// Copies a number of bytes to the internal codec buffer - ready for proccesing 163 /// Copies a number of bytes to the internal codec buffer - ready for processing
164 /// </summary> 164 /// </summary>
165 /// <param name="data">The byte array that contains the data to copy</param> 165 /// <param name="data">The byte array that contains the data to copy</param>
166 /// <param name="startIndex">The index of the first byte to copy</param> 166 /// <param name="startIndex">The index of the first byte to copy</param>