From 51fc1773ea82351c4392c6d98f3aee6fee0d6e64 Mon Sep 17 00:00:00 2001 From: Anton Harniakou Date: Thu, 24 Apr 2025 10:36:23 +0300 Subject: [PATCH] Fix missing documentation warning; improve the documentation message --- vendored/sqlite3-parser/src/parser/ast/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendored/sqlite3-parser/src/parser/ast/mod.rs b/vendored/sqlite3-parser/src/parser/ast/mod.rs index d511ddaaf..74da5b647 100644 --- a/vendored/sqlite3-parser/src/parser/ast/mod.rs +++ b/vendored/sqlite3-parser/src/parser/ast/mod.rs @@ -1622,7 +1622,7 @@ pub enum PragmaName { LegacyFileFormat, /// Return the total number of pages in the database file. PageCount, - // `page_size` pragma + /// Return the page size of the database in bytes. PageSize, /// returns information about the columns of a table TableInfo,