From d4e99b86c58f0a12f2fa672b9bb6c2656bec4eb6 Mon Sep 17 00:00:00 2001 From: Sam Scott Date: Wed, 11 Sep 2019 18:41:53 -0400 Subject: [PATCH] Add space, remove "as string". --- tracing-core/src/field.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tracing-core/src/field.rs b/tracing-core/src/field.rs index ede426c722..7c3d05ab0d 100644 --- a/tracing-core/src/field.rs +++ b/tracing-core/src/field.rs @@ -218,7 +218,8 @@ pub trait Value: crate::sealed::Sealed { fn record(&self, key: &Field, visitor: &mut dyn Visit); } -/// A `Value` which serializes as a string using `fmt::Display`. +/// A `Value` which serializes using `fmt::Display`. +/// /// Uses `record_debug` in the `Value` implementation to /// avoid an unnecessary evaluation. #[derive(Clone)]