diff options
Diffstat (limited to 'contrib/dotzlib/DotZLib/CodecBase.cs')
-rw-r--r-- | contrib/dotzlib/DotZLib/CodecBase.cs | 4 |
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> |