From 6aabd919da062fd69ccc623956439d74d904f7a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=A0=EC=9A=B0?= Date: Fri, 12 Jul 2024 23:19:44 +0900 Subject: [PATCH] Fix typo --- core/sqlite3_ondisk.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/sqlite3_ondisk.rs b/core/sqlite3_ondisk.rs index 7da54f006..ae3ec70b1 100644 --- a/core/sqlite3_ondisk.rs +++ b/core/sqlite3_ondisk.rs @@ -13,7 +13,7 @@ /// /// The first page is special because it contains a 100 byte header at the beginning. /// -/// Each page constists of a page header and N cells, which contain the records. +/// Each page consists of a page header and N cells, which contain the records. /// /// +-----------------+----------------+---------------------+----------------+ /// | | | | | @@ -38,7 +38,7 @@ pub const DATABASE_HEADER_SIZE: usize = 100; // DEFAULT_CACHE_SIZE negative values mean that we store the amount of pages a XKiB of memory can hold. // We can calculate "real" cache size by diving by page size. const DEFAULT_CACHE_SIZE: i32 = -2000; -// Minimun number of pages that cache can hold. +// Minimum number of pages that cache can hold. pub const MIN_PAGE_CACHE_SIZE: usize = 10; #[derive(Debug, Default, Clone)]