Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulusParssinen committed Jan 20, 2025
1 parent 5758cd7 commit 8df4830
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libs/common/RespReadUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ public static bool TryReadSignedArrayLength(out int length, ref byte* ptr, byte*
/// <exception cref="RespParsingException">Thrown if the length header is negative.</exception>
/// <exception cref="RespParsingException">Thrown if unexpected token is read.</exception>
/// <exception cref="RespParsingException">Thrown if integer overflow occurs.</exception>
/// <exception cref="RespParsingException">Thrown if not a not a number is read.</exception>
/// <exception cref="RespParsingException">Thrown if not a number is read.</exception>
public static bool TryReadInt32WithLengthHeader(out int number, ref byte* ptr, byte* end)
{
number = 0;
Expand Down Expand Up @@ -551,7 +551,7 @@ public static bool TryReadInt32WithLengthHeader(out int number, ref byte* ptr, b
/// <exception cref="RespParsingException">Thrown if the length header is negative.</exception>
/// <exception cref="RespParsingException">Thrown if unexpected token is read.</exception>
/// <exception cref="RespParsingException">Thrown if integer overflow occurs.</exception>
/// <exception cref="RespParsingException">Thrown if not a not a number is read.</exception>
/// <exception cref="RespParsingException">Thrown if not a number is read.</exception>
public static bool TryReadInt64WithLengthHeader(out long number, ref byte* ptr, byte* end)
{
number = 0;
Expand Down Expand Up @@ -592,7 +592,7 @@ public static bool TryReadInt64WithLengthHeader(out long number, ref byte* ptr,
/// <exception cref="RespParsingException">Thrown if the length header is negative.</exception>
/// <exception cref="RespParsingException">Thrown if unexpected token is read.</exception>
/// <exception cref="RespParsingException">Thrown if integer overflow occurs.</exception>
/// <exception cref="RespParsingException">Thrown if not a not a number is read.</exception>
/// <exception cref="RespParsingException">Thrown if not a number is read.</exception>
public static bool TryReadUInt64WithLengthHeader(out ulong number, ref byte* ptr, byte* end)
{
number = 0;
Expand Down

0 comments on commit 8df4830

Please sign in to comment.