Skip to content

Commit 3c32813

Browse files
authored
Merge PR #461: Fix Exception doc comments
* fix doc comment in ZipInputStream.BodyRead * fix doc comment in ZipOutputStream.SetComment
1 parent c7a91b8 commit 3c32813

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ICSharpCode.SharpZipLib/Zip/ZipInputStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ public override int Read(byte[] buffer, int offset, int count)
584584
/// <returns>
585585
/// 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.
586586
/// </returns>
587-
/// <exception name="IOException">
587+
/// <exception cref="IOException">
588588
/// An i/o error occured.
589589
/// </exception>
590590
/// <exception cref="ZipException">

src/ICSharpCode.SharpZipLib/Zip/ZipOutputStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public bool IsFinished
9595
/// <param name="comment">
9696
/// The comment text for the entire archive.
9797
/// </param>
98-
/// <exception name ="ArgumentOutOfRangeException">
98+
/// <exception cref="ArgumentOutOfRangeException">
9999
/// The converted comment is longer than 0xffff bytes.
100100
/// </exception>
101101
public void SetComment(string comment)

0 commit comments

Comments
 (0)