From cafb13eb95ffc2b865846043f0d117082c6e7816 Mon Sep 17 00:00:00 2001 From: trevyn <230691+trevyn@users.noreply.github.com> Date: Sat, 17 Sep 2022 19:22:31 +0400 Subject: [PATCH] Clarify config::legacy() doc to match config::standard() (#580) --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index b5b3637..594ca2e 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() }