From f38e42ff5cfc6e0986c3cff787d8f81625b56bc7 Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Wed, 13 May 2020 18:59:35 +0100 Subject: [PATCH 1/2] fix doc comment in ZipInputStream.BodyRead --- src/ICSharpCode.SharpZipLib/Zip/ZipInputStream.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ICSharpCode.SharpZipLib/Zip/ZipInputStream.cs b/src/ICSharpCode.SharpZipLib/Zip/ZipInputStream.cs index c6ac79fa..b9c8d8c3 100644 --- a/src/ICSharpCode.SharpZipLib/Zip/ZipInputStream.cs +++ b/src/ICSharpCode.SharpZipLib/Zip/ZipInputStream.cs @@ -584,7 +584,7 @@ public override int Read(byte[] buffer, int offset, int count) /// /// The number of bytes read (this may be less than the length requested, even before the end of stream), or 0 on end of stream. /// - /// + /// /// An i/o error occured. /// /// From 3b93dfd7443fb143f8f5ed966479539d964122f3 Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Wed, 13 May 2020 19:27:14 +0100 Subject: [PATCH 2/2] fix doc comment in ZipOutputStream.SetComment --- src/ICSharpCode.SharpZipLib/Zip/ZipOutputStream.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ICSharpCode.SharpZipLib/Zip/ZipOutputStream.cs b/src/ICSharpCode.SharpZipLib/Zip/ZipOutputStream.cs index b9f1965d..8f078451 100644 --- a/src/ICSharpCode.SharpZipLib/Zip/ZipOutputStream.cs +++ b/src/ICSharpCode.SharpZipLib/Zip/ZipOutputStream.cs @@ -95,7 +95,7 @@ public bool IsFinished /// /// The comment text for the entire archive. /// - /// + /// /// The converted comment is longer than 0xffff bytes. /// public void SetComment(string comment)