aboutsummaryrefslogtreecommitdiff
path: root/contrib/dotzlib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/dotzlib')
-rw-r--r--contrib/dotzlib/DotZLib/ChecksumImpl.cs2
-rw-r--r--contrib/dotzlib/DotZLib/CodecBase.cs4
-rw-r--r--contrib/dotzlib/DotZLib/GZipStream.cs6
-rw-r--r--contrib/dotzlib/readme.txt2
4 files changed, 7 insertions, 7 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
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>
diff --git a/contrib/dotzlib/DotZLib/GZipStream.cs b/contrib/dotzlib/DotZLib/GZipStream.cs
index b161300..58091d3 100644
--- a/contrib/dotzlib/DotZLib/GZipStream.cs
+++ b/contrib/dotzlib/DotZLib/GZipStream.cs
@@ -246,7 +246,7 @@ namespace DotZLib
246 } 246 }
247 247
248 /// <summary> 248 /// <summary>
249 /// Not suppported. 249 /// Not supported.
250 /// </summary> 250 /// </summary>
251 /// <param name="offset"></param> 251 /// <param name="offset"></param>
252 /// <param name="origin"></param> 252 /// <param name="origin"></param>
@@ -268,7 +268,7 @@ namespace DotZLib
268 } 268 }
269 269
270 /// <summary> 270 /// <summary>
271 /// Gets/sets the current position in the <c>GZipStream</c>. Not suppported. 271 /// Gets/sets the current position in the <c>GZipStream</c>. Not supported.
272 /// </summary> 272 /// </summary>
273 /// <remarks>In this implementation this property is not supported</remarks> 273 /// <remarks>In this implementation this property is not supported</remarks>
274 /// <exception cref="NotSupportedException">Always thrown</exception> 274 /// <exception cref="NotSupportedException">Always thrown</exception>
@@ -285,7 +285,7 @@ namespace DotZLib
285 } 285 }
286 286
287 /// <summary> 287 /// <summary>
288 /// Gets the size of the stream. Not suppported. 288 /// Gets the size of the stream. Not supported.
289 /// </summary> 289 /// </summary>
290 /// <remarks>In this implementation this property is not supported</remarks> 290 /// <remarks>In this implementation this property is not supported</remarks>
291 /// <exception cref="NotSupportedException">Always thrown</exception> 291 /// <exception cref="NotSupportedException">Always thrown</exception>
diff --git a/contrib/dotzlib/readme.txt b/contrib/dotzlib/readme.txt
index b239572..47454fc 100644
--- a/contrib/dotzlib/readme.txt
+++ b/contrib/dotzlib/readme.txt
@@ -36,7 +36,7 @@ Build instructions:
36 in the same directory as the DotZLib.build file. 36 in the same directory as the DotZLib.build file.
37 You can define 2 properties on the nant command-line to control the build: 37 You can define 2 properties on the nant command-line to control the build:
38 debug={true|false} to toggle between release/debug builds (default=true). 38 debug={true|false} to toggle between release/debug builds (default=true).
39 nunit={true|false} to include or esclude unit tests (default=true). 39 nunit={true|false} to include or exclude unit tests (default=true).
40 Also the target clean will remove binaries. 40 Also the target clean will remove binaries.
41 Output file (DotZLib.dll) will be found in either ./DotZLib/bin/release 41 Output file (DotZLib.dll) will be found in either ./DotZLib/bin/release
42 or ./DotZLib/bin/debug, depending on whether you are building the release 42 or ./DotZLib/bin/debug, depending on whether you are building the release