Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libs/common/RespReadUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public static bool TryReadInt64(ref byte* ptr, byte* end, out long value, out ul
/// <param name="value">If parsing was successful, contains the parsed long value.</param>
/// <param name="bytesRead">If parsing was successful, contains the number of bytes that were parsed.</param>
/// <param name="signRead">True if +/- sign was read during parsing</param>
/// <param name="overflow">True if overflow occured during parsing</param>
/// <param name="overflow">True if overflow occurred during parsing</param>
/// <param name="allowLeadingZeros">True if leading zeros allowed</param>
/// <returns>
/// True if a long was successfully parsed, false if the input string did not start with
Expand Down Expand Up @@ -240,7 +240,7 @@ public static bool TryReadInt32(ref byte* ptr, byte* end, out int value, out ulo
/// <param name="value">If parsing was successful, contains the parsed int value.</param>
/// <param name="bytesRead">If parsing was successful, contains the number of bytes that were parsed.</param>
/// <param name="signRead">True if +/- sign was read during parsing</param>
/// <param name="overflow">True if overflow occured during parsing</param>
/// <param name="overflow">True if overflow occurred during parsing</param>
/// <param name="allowLeadingZeros">True if leading zeros allowed</param>
/// <returns>
/// True if an int was successfully parsed, false if the input string did not start with
Expand Down