diff --git a/src/ICSharpCode.SharpZipLib/Core/NameFilter.cs b/src/ICSharpCode.SharpZipLib/Core/NameFilter.cs
index 58c578a25..57751891c 100644
--- a/src/ICSharpCode.SharpZipLib/Core/NameFilter.cs
+++ b/src/ICSharpCode.SharpZipLib/Core/NameFilter.cs
@@ -106,7 +106,7 @@ public static bool IsValidFilterExpression(string toTest)
/// Split a string into its component pieces
///
/// The original string
- /// Returns an array of values containing the individual filter elements.
+ /// Returns an array of values containing the individual filter elements.
public static string[] SplitQuoted(string original)
{
char escape = '\\';
diff --git a/src/ICSharpCode.SharpZipLib/Zip/ZipFile.cs b/src/ICSharpCode.SharpZipLib/Zip/ZipFile.cs
index 091a98d53..59ba3f950 100644
--- a/src/ICSharpCode.SharpZipLib/Zip/ZipFile.cs
+++ b/src/ICSharpCode.SharpZipLib/Zip/ZipFile.cs
@@ -4004,12 +4004,12 @@ public override long Position
///
/// The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.
///
- /// The sum of offset and count is larger than the buffer length.
- /// Methods were called after the stream was closed.
- /// The stream does not support reading.
- /// buffer is null.
- /// An I/O error occurs.
- /// offset or count is negative.
+ /// The sum of offset and count is larger than the buffer length.
+ /// Methods were called after the stream was closed.
+ /// The stream does not support reading.
+ /// buffer is null.
+ /// An I/O error occurs.
+ /// offset or count is negative.
public override int Read(byte[] buffer, int offset, int count)
{
return 0;
@@ -4019,13 +4019,13 @@ public override int Read(byte[] buffer, int offset, int count)
/// Sets the position within the current stream.
///
/// A byte offset relative to the origin parameter.
- /// A value of type indicating the reference point used to obtain the new position.
+ /// A value of type indicating the reference point used to obtain the new position.
///
/// The new position within the current stream.
///
- /// An I/O error occurs.
- /// The stream does not support seeking, such as if the stream is constructed from a pipe or console output.
- /// Methods were called after the stream was closed.
+ /// An I/O error occurs.
+ /// The stream does not support seeking, such as if the stream is constructed from a pipe or console output.
+ /// Methods were called after the stream was closed.
public override long Seek(long offset, SeekOrigin origin)
{
return 0;
@@ -4035,9 +4035,9 @@ public override long Seek(long offset, SeekOrigin origin)
/// Sets the length of the current stream.
///
/// The desired length of the current stream in bytes.
- /// The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output.
- /// An I/O error occurs.
- /// Methods were called after the stream was closed.
+ /// The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output.
+ /// An I/O error occurs.
+ /// Methods were called after the stream was closed.
public override void SetLength(long value)
{
}
@@ -4048,12 +4048,12 @@ public override void SetLength(long value)
/// An array of bytes. This method copies count bytes from buffer to the current stream.
/// The zero-based byte offset in buffer at which to begin copying bytes to the current stream.
/// The number of bytes to be written to the current stream.
- /// An I/O error occurs.
- /// The stream does not support writing.
- /// Methods were called after the stream was closed.
- /// buffer is null.
- /// The sum of offset and count is greater than the buffer length.
- /// offset or count is negative.
+ /// An I/O error occurs.
+ /// The stream does not support writing.
+ /// Methods were called after the stream was closed.
+ /// buffer is null.
+ /// The sum of offset and count is greater than the buffer length.
+ /// offset or count is negative.
public override void Write(byte[] buffer, int offset, int count)
{
baseStream_.Write(buffer, offset, count);
@@ -4133,12 +4133,12 @@ public override int ReadByte()
///
/// The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.
///
- /// The sum of offset and count is larger than the buffer length.
- /// Methods were called after the stream was closed.
- /// The stream does not support reading.
- /// buffer is null.
- /// An I/O error occurs.
- /// offset or count is negative.
+ /// The sum of offset and count is larger than the buffer length.
+ /// Methods were called after the stream was closed.
+ /// The stream does not support reading.
+ /// buffer is null.
+ /// An I/O error occurs.
+ /// offset or count is negative.
public override int Read(byte[] buffer, int offset, int count)
{
lock (baseStream_)
@@ -4172,12 +4172,12 @@ public override int Read(byte[] buffer, int offset, int count)
/// An array of bytes. This method copies count bytes from buffer to the current stream.
/// The zero-based byte offset in buffer at which to begin copying bytes to the current stream.
/// The number of bytes to be written to the current stream.
- /// An I/O error occurs.
- /// The stream does not support writing.
- /// Methods were called after the stream was closed.
- /// buffer is null.
- /// The sum of offset and count is greater than the buffer length.
- /// offset or count is negative.
+ /// An I/O error occurs.
+ /// The stream does not support writing.
+ /// Methods were called after the stream was closed.
+ /// buffer is null.
+ /// The sum of offset and count is greater than the buffer length.
+ /// offset or count is negative.
public override void Write(byte[] buffer, int offset, int count)
{
throw new NotSupportedException();
@@ -4187,9 +4187,9 @@ public override void Write(byte[] buffer, int offset, int count)
/// When overridden in a derived class, sets the length of the current stream.
///
/// The desired length of the current stream in bytes.
- /// The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output.
- /// An I/O error occurs.
- /// Methods were called after the stream was closed.
+ /// The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output.
+ /// An I/O error occurs.
+ /// Methods were called after the stream was closed.
public override void SetLength(long value)
{
throw new NotSupportedException();
@@ -4199,13 +4199,13 @@ public override void SetLength(long value)
/// When overridden in a derived class, sets the position within the current stream.
///
/// A byte offset relative to the origin parameter.
- /// A value of type indicating the reference point used to obtain the new position.
+ /// A value of type indicating the reference point used to obtain the new position.
///
/// The new position within the current stream.
///
- /// An I/O error occurs.
- /// The stream does not support seeking, such as if the stream is constructed from a pipe or console output.
- /// Methods were called after the stream was closed.
+ /// An I/O error occurs.
+ /// The stream does not support seeking, such as if the stream is constructed from a pipe or console output.
+ /// Methods were called after the stream was closed.
public override long Seek(long offset, SeekOrigin origin)
{
long newPos = readPos_;
@@ -4241,7 +4241,7 @@ public override long Seek(long offset, SeekOrigin origin)
///
/// Clears all buffers for this stream and causes any buffered data to be written to the underlying device.
///
- /// An I/O error occurs.
+ /// An I/O error occurs.
public override void Flush()
{
// Nothing to do.
@@ -4252,9 +4252,9 @@ public override void Flush()
///
///
/// The current position within the stream.
- /// An I/O error occurs.
- /// The stream does not support seeking.
- /// Methods were called after the stream was closed.
+ /// An I/O error occurs.
+ /// The stream does not support seeking.
+ /// Methods were called after the stream was closed.
public override long Position
{
get { return readPos_ - start_; }
@@ -4280,8 +4280,8 @@ public override long Position
///
///
/// A long value representing the length of the stream in bytes.
- /// A class derived from Stream does not support seeking.
- /// Methods were called after the stream was closed.
+ /// A class derived from Stream does not support seeking.
+ /// Methods were called after the stream was closed.
public override long Length
{
get { return length_; }