move documents

This commit is contained in:
HolographicHat
2026-01-26 16:45:37 +08:00
parent 3b7d0a1252
commit 7d15069e54
7 changed files with 1 additions and 1 deletions

View File

@@ -98,7 +98,7 @@ internal static unsafe class Application {
return 0; return 0;
} }
private static ulong ReadRawVarInt64(this Span<byte> span, ref int offset) { private static ulong ReadRawVarInt64(Span<byte> span, ref int offset) {
ulong result = 0; ulong result = 0;
for (var i = 0; i < 8; i++) { for (var i = 0; i < 8; i++) {
var b = span[offset++]; var b = span[offset++];