Skip to content

Commit 70da127

Browse files
committed
Few comment adjustments.
1 parent a89dafd commit 70da127

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/IKVM.ByteCode/Buffers/BlobBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public partial class BlobBuilder
2929
/// <summary>
3030
/// Builders are linked like so:
3131
///
32-
/// [1:first]->[2]->[3:last]<-[4:head]
32+
/// [1:first]-&gt;[2]-&gt;[3:last]&lt;-[4:head]
3333
/// ^_______________|
3434
///
3535
/// In this case the content represented is a sequence (1,2,3,4).
@@ -594,7 +594,7 @@ static void ValidateRange(int bufferLength, int start, int byteCount, string byt
594594
}
595595

596596
/// <summary>
597-
/// Writes the bytes from the specified array to <paramref name="buffer">.
597+
/// Writes the bytes from the specified array to <paramref name="buffer" />.
598598
/// </summary>
599599
/// <param name="buffer"></param>
600600
/// <param name="start"></param>

src/IKVM.ByteCode/Buffers/SequenceReaderExtensions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public static unsafe bool TryReadBigEndian(ref this SequenceReader<byte> reader,
219219
/// <summary>
220220
/// Reads a <see cref="Double"/> as big endian.
221221
/// </summary>
222-
/// <returns>False if there wasn't enough data for a <see cref="Double"/>.</returns>
222+
/// <returns>False if there wasn't enough data for a <see cref="double"/>.</returns>
223223
public static unsafe bool TryReadBigEndian(ref this SequenceReader<byte> reader, out double value)
224224
{
225225
if (reader.TryReadBigEndian(out long longValue))
@@ -237,7 +237,7 @@ public static unsafe bool TryReadBigEndian(ref this SequenceReader<byte> reader,
237237
/// </summary>
238238
/// <param name="count">Read count.</param>
239239
/// <param name="sequence">The read data, if successfully read requested <paramref name="count"/> data.</param>
240-
/// <returns><c>true</c> if remaining items in current <see cref="SequenceReader{byte}" /> is enough for <paramref name="count"/>.</returns>
240+
/// <returns><c>true</c> if remaining items in current <see cref="SequenceReader{Byte}" /> is enough for <paramref name="count"/>.</returns>
241241
public static bool TryReadExact(ref this SequenceReader<byte> reader, int count, out ReadOnlySequence<byte> sequence)
242242
{
243243
if (count < 0)
@@ -261,7 +261,7 @@ public static bool TryReadExact(ref this SequenceReader<byte> reader, int count,
261261
/// </summary>
262262
/// <param name="count">Read count.</param>
263263
/// <param name="sequence">The read data, if successfully read requested <paramref name="count"/> data.</param>
264-
/// <returns><c>true</c> if remaining items in current <see cref="SequenceReader{byte}" /> is enough for <paramref name="count"/>.</returns>
264+
/// <returns><c>true</c> if remaining items in current <see cref="SequenceReader{Byte}" /> is enough for <paramref name="count"/>.</returns>
265265
public static bool TryReadExact(ref this SequenceReader<byte> reader, long count, out ReadOnlySequence<byte> sequence)
266266
{
267267
if (count < 0)

src/IKVM.ByteCode/Buffers/UnsafeMemoryManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace IKVM.ByteCode.Buffers
77
{
88

99
/// <summary>
10-
/// A <see cref="MemoryManager{byte}"/> over a raw pointer.
10+
/// A <see cref="MemoryManager{T}"/> over a raw pointer.
1111
/// </summary>
1212
sealed unsafe class UnmanagedMemoryManager : MemoryManager<byte>
1313
{

0 commit comments

Comments
 (0)