From 6ba5af2ce2a814fea521d2d0a5ea1e88d7b6011e Mon Sep 17 00:00:00 2001 From: David Barsky Date: Thu, 12 Oct 2023 20:12:54 -0400 Subject: [PATCH] docs: remove mention of `Registration` on v0.1.x (#2753) This type does not exist on v0.1.x --- tracing-core/src/callsite.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tracing-core/src/callsite.rs b/tracing-core/src/callsite.rs index f887132364..62fa8c4af6 100644 --- a/tracing-core/src/callsite.rs +++ b/tracing-core/src/callsite.rs @@ -9,9 +9,7 @@ //! * Storing the span or event's [`Metadata`], //! * Uniquely [identifying](Identifier) the span or event definition, //! * Caching the subscriber's [`Interest`][^1] in that span or event, to avoid -//! re-evaluating filters, -//! * Storing a [`Registration`] that allows the callsite to be part of a global -//! list of all callsites in the program. +//! re-evaluating filters. //! //! # Registering Callsites //!