Skip to content

Commit 18deefb

Browse files
authored
minor improvements (#582)
1 parent 77ad415 commit 18deefb

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/DotNetty.Buffers/IByteBuffer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ public interface IByteBuffer : IReferenceCounted, IComparable<IByteBuffer>, IEqu
959959

960960
/// <summary>
961961
/// Transfers bytes from this buffer's data into the specified destination buffer
962-
/// starting at the curent <see cref="ReaderIndex" /> until the destination becomes
962+
/// starting at the current <see cref="ReaderIndex" /> until the destination becomes
963963
/// non-writable and increases the <see cref="ReaderIndex" /> by the number of transferred bytes.
964964
/// </summary>
965965
/// <exception cref="IndexOutOfRangeException">

src/DotNetty.Buffers/IPoolChunkListMetric.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ namespace DotNetty.Buffers
77

88
public interface IPoolChunkListMetric : IEnumerable<IPoolChunkMetric>
99
{
10-
/// Return the minum usage of the chunk list before which chunks are promoted to the previous list.
10+
/// Return the minimum usage of the chunk list before which chunks are promoted to the previous list.
1111
int MinUsage { get; }
1212

13-
/// Return the minum usage of the chunk list after which chunks are promoted to the next list.
13+
/// Return the maximum usage of the chunk list after which chunks are promoted to the next list.
1414
int MaxUsage { get; }
1515
}
1616
}

0 commit comments

Comments
 (0)