From 37c7ccfd0526b5c99c47fb6529db03e331f10710 Mon Sep 17 00:00:00 2001 From: trevyn <230691+trevyn@users.noreply.github.com> Date: Sat, 17 Sep 2022 18:46:57 +0400 Subject: [PATCH] Clarify config::legacy() doc to match config::standard() --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index b5b36377..594ca2ef 100644 --- a/src/config.rs +++ b/src/config.rs @@ -67,7 +67,7 @@ pub const fn standard() -> Configuration { /// Creates the "legacy" default config. This is the default config that was present in bincode 1.0 /// - Little endian /// - Fixed int length encoding -/// - Write array lengths +/// - Write fixed array length pub const fn legacy() -> Configuration { generate() }