From 558a2214bcd58cb4828e90a39fc21391349a0015 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Tue, 1 Jun 2021 18:28:01 +0300 Subject: [PATCH] Fix comment --- pageserver/src/waldecoder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pageserver/src/waldecoder.rs b/pageserver/src/waldecoder.rs index 28ad0221a5..e347ef27c8 100644 --- a/pageserver/src/waldecoder.rs +++ b/pageserver/src/waldecoder.rs @@ -90,7 +90,7 @@ impl WalStreamDecoder { /// decoder so far. /// /// Returns one of the following: - /// Ok((u64, Bytes)): a tuple containing the LSN of next record, and the record itself + /// Ok((Lsn, Bytes)): a tuple containing the LSN of next record, and the record itself /// Ok(None): there is not enough data in the input buffer. Feed more by calling the `feed_bytes` function /// Err(WalDecodeError): an error occured while decoding, meaning the input was invalid. ///