From 3743e8a31a42332c573e0c87e6f5af053f612dc8 Mon Sep 17 00:00:00 2001 From: Techcable Date: Mon, 23 Sep 2024 07:35:56 -0700 Subject: [PATCH] doc: Avoid using 'implement' twice in slog::Value This is a minor style improvement. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 03244863..8d3bce9c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2953,7 +2953,7 @@ where // {{{ Value /// Value that can be serialized /// -/// Types that implement this trait implement custom serialization in the +/// Types that implement this trait have custom serialization in the /// structured part of the log macros. Without an implementation of `Value` for /// your type you must emit using either the `?` "debug", `#?` "pretty-debug", /// `%` "display", `#%` "alternate display" or [`SerdeValue`](trait.SerdeValue.html)