Skip to content

Commit

Permalink
Fixed typo in summary comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfreilly committed Aug 7, 2008
1 parent 5ec5dc5 commit 5d725ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Zip/ZipExtraData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ static ITaggedData Create(short tag, byte[] data, int offset, int count)
/// <summary>
/// Get the length of the last value found by <see cref="Find"/>
/// </summary>
/// <remarks>This is only value if <see cref="Find"/> has previsouly returned true.</remarks>
/// <remarks>This is only valid if <see cref="Find"/> has previously returned true.</remarks>
public int ValueLength
{
get { return readValueLength_; }
Expand All @@ -636,7 +636,7 @@ public int ValueLength
/// Get the index for the current read value.
/// </summary>
/// <remarks>This is only valid if <see cref="Find"/> has previously returned true.
/// Initially it will be the index of the first byte of actual data. The value is updated after calls to
/// Initially the result will be the index of the first byte of actual data. The value is updated after calls to
/// <see cref="ReadInt"/>, <see cref="ReadShort"/> and <see cref="ReadLong"/>. </remarks>
public int CurrentReadIndex
{
Expand Down

0 comments on commit 5d725ae

Please sign in to comment.