From f0638aa778a688410ac655f452a30e34fbb8b356 Mon Sep 17 00:00:00 2001 From: Alexander Tesfamichael Date: Sat, 5 Aug 2023 10:05:29 +0200 Subject: [PATCH] docs(field): remove duplicate wording --- tracing-core/src/field.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tracing-core/src/field.rs b/tracing-core/src/field.rs index 80ca065ba3..a8bbe24ca9 100644 --- a/tracing-core/src/field.rs +++ b/tracing-core/src/field.rs @@ -1,8 +1,8 @@ //! Span and `Event` key-value data. //! -//! Spans and events may be annotated with key-value data, referred to as known -//! as _fields_. These fields consist of a mapping from a key (corresponding to -//! a `&str` but represented internally as an array index) to a [`Value`]. +//! Spans and events may be annotated with key-value data, known as _fields_. +//! These fields consist of a mapping from a key (corresponding to a `&str` but +//! represented internally as an array index) to a [`Value`]. //! //! # `Value`s and `Collect`s //!