From cd2d97183e5831f8a1eee42d30174335841aaf1e Mon Sep 17 00:00:00 2001 From: Raphael Taylor-Davies Date: Sun, 1 Dec 2024 16:25:26 +0000 Subject: [PATCH] Docs --- arrow-avro/src/reader/vlq.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arrow-avro/src/reader/vlq.rs b/arrow-avro/src/reader/vlq.rs index 1c78616e768..1375ff2ebc1 100644 --- a/arrow-avro/src/reader/vlq.rs +++ b/arrow-avro/src/reader/vlq.rs @@ -61,9 +61,9 @@ pub(crate) fn read_varint(buf: &[u8]) -> Option<(u64, usize)> { } /// Based on -/// - https://github.com/tokio-rs/prost/blob/master/prost/src/encoding/varint.rs#L71 -/// - https://github.com/google/protobuf/blob/3.3.x/src/google/protobuf/io/coded_stream.cc#L365-L406 -/// - https://github.com/protocolbuffers/protobuf-go/blob/v1.27.1/encoding/protowire/wire.go#L358 +/// - +/// - +/// - #[inline] fn read_varint_array(buf: [u8; 10]) -> Option<(u64, usize)> { let mut in_progress = 0_u64;