From 0d6ae6e18bb9e70b8c6e0204b879d15882e4b78a Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Wed, 21 Aug 2024 19:22:29 +0000 Subject: [PATCH] fix doc comment --- pageserver/src/tenant/storage_layer/inmemory_layer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pageserver/src/tenant/storage_layer/inmemory_layer.rs b/pageserver/src/tenant/storage_layer/inmemory_layer.rs index 5e11049ee0..3e67df0aee 100644 --- a/pageserver/src/tenant/storage_layer/inmemory_layer.rs +++ b/pageserver/src/tenant/storage_layer/inmemory_layer.rs @@ -115,7 +115,7 @@ pub struct InMemoryLayerIndexValue(u64); impl InMemoryLayerIndexValue { /// Derive remaining space for pos. - /// TODO: define and enforce a hard limit at the [`Timline::should_roll`] level. + /// TODO: define and enforce a hard limit at the [`crate::tenant::Timeline::should_roll`] level. /// => see also [`Self::does_timeline_should_roll_prevent_failure`] const MAX_SUPPORTED_POS_BITS: usize = { let remainder = 64 - 1 - MAX_SUPPORTED_BLOB_LEN_BITS;