From 86ca74704ecdb94b8f89133a1733f048f72d97b3 Mon Sep 17 00:00:00 2001 From: Emil Lundberg Date: Fri, 19 Jul 2024 02:03:46 +0200 Subject: [PATCH] Fix typo --- src/util.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/util.rs b/src/util.rs index 3284a230..509f4aa9 100644 --- a/src/util.rs +++ b/src/util.rs @@ -84,10 +84,10 @@ pub fn decode_hex(s: &str) -> Vec { /// Arguments: /// - An expression of type [serde::Serializer]. This expression will be bound /// to a local variable and thus evaluated only once. -/// - 0 to 10 (inclusive) more entries of the form `$key => $value,`, where -/// `$key` is any expression and `$value` is an expression of type -/// [Option]. The entry will be included in the map if and only if the -/// `$value` is [Some]. Each key and value expression is evaluated only once. +/// - 0 to 10 (inclusive) entries of the form `$key => $value,`, where `$key` is +/// any expression and `$value` is an expression of type [Option]. The +/// entry will be included in the map if and only if the `$value` is [Some]. +/// Each key and value expression is evaluated only once. /// - The 11th entry and forward instead needs to take the form `$ident: $key => /// $value,`, where `$ident` is an arbitrary identifier. These `$ident`s are /// needed in order to bind each `$value` as a local variable, in order to