From 2ee84b3c27bd95ddd84c23b0fae4204ee8b26073 Mon Sep 17 00:00:00 2001 From: Alexander Tesfamichael Date: Mon, 14 Aug 2023 19:09:18 +0200 Subject: [PATCH] docs(field): remove duplicate wording (#2674) --- 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 2d6ec13cde..61e26f9534 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 `Subscriber`s //!