From a4fc6a92c992183f18e3eea8e1c02df6ef337764 Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Wed, 15 Jan 2025 16:10:04 +0100 Subject: [PATCH] fix cargo doc --- pageserver/src/tenant/timeline/handle.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pageserver/src/tenant/timeline/handle.rs b/pageserver/src/tenant/timeline/handle.rs index 59f399d01a..b8bc2ba2aa 100644 --- a/pageserver/src/tenant/timeline/handle.rs +++ b/pageserver/src/tenant/timeline/handle.rs @@ -114,13 +114,13 @@ //! //! The attentive reader may have noticed the following reference cycle around the `Arc`: //! -//! ``` +//! ```text //! Timeline --owns--> PerTimelineState --strong--> HandleInner --strong--> WeakHandle --strong--> Timeline //! ``` //! //! Further, there is this cycle: //! -//! ``` +//! ```text //! Timeline --owns--> PerTimelineState --strong--> HandleInner --strong--> GateGuard --keepalive--> Timeline //! ``` //!