From c446e3d3ab05f61671c3fce0693963dd2acfbfb1 Mon Sep 17 00:00:00 2001 From: Vlad Lazar Date: Thu, 10 Oct 2024 20:40:34 +0200 Subject: [PATCH] chore: fixup comment --- pageserver/src/tenant/storage_layer/image_layer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pageserver/src/tenant/storage_layer/image_layer.rs b/pageserver/src/tenant/storage_layer/image_layer.rs index 619e3657b8..91048f19ed 100644 --- a/pageserver/src/tenant/storage_layer/image_layer.rs +++ b/pageserver/src/tenant/storage_layer/image_layer.rs @@ -21,7 +21,7 @@ //! //! Every image layer file consists of three parts: "summary", //! "index", and "values". The summary is a fixed size header at the -//! beginningof the file, and it contains basic information about the +//! beginning of the file, and it contains basic information about the //! layer, and offsets to the other parts. The "index" is a B-tree, //! mapping from Key to an offset in the "values" part. The //! actual page images are stored in the "values" part.