From 683b3f42ad62d5bab3a2303bc60f328befdb7539 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 19438a5f..8f281aab 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2972,7 +2972,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)