From 0d046e7b0e95336530d3f49728c72aeb2395f937 Mon Sep 17 00:00:00 2001 From: Taehyung Lim Date: Mon, 14 Jun 2021 05:25:37 +0900 Subject: [PATCH] fix typo (#392) --- src/config/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/mod.rs b/src/config/mod.rs index ee4d7d1..e4bc4a5 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -150,12 +150,12 @@ pub trait Options: InternalOptions + Sized { WithOtherEndian::new(self) } - /// Sets the length encoding to varint + /// Sets the integer encoding to varint fn with_varint_encoding(self) -> WithOtherIntEncoding { WithOtherIntEncoding::new(self) } - /// Sets the length encoding to be fixed + /// Sets the integer encoding to be fixed fn with_fixint_encoding(self) -> WithOtherIntEncoding { WithOtherIntEncoding::new(self) }