From 1dd5b549c4eb4431cf3e09a52ba62f01574a5c1c Mon Sep 17 00:00:00 2001 From: BitSyndicate Date: Mon, 5 May 2025 00:55:55 +0200 Subject: [PATCH] chore: fix another missing period --- src/collections/sparse_set.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/collections/sparse_set.rs b/src/collections/sparse_set.rs index 2bbcc7e..a23117c 100644 --- a/src/collections/sparse_set.rs +++ b/src/collections/sparse_set.rs @@ -10,7 +10,7 @@ use bytemuck::Contiguous; const SPARSE_PAGESIZE: usize = (1 << 10) * 4; type SparsePage = Option<(Box<[Option; SPARSE_PAGESIZE], A>, usize)>; -/// A sparse set for fast lookup of large indices +/// A sparse set for fast lookup of large indices. /// /// The sparse allocator is mainly used for bulk allocations in the system's page size /// for the lookup array. It will also be used for the array of pointers into those