From 03e227fbb2320c4d6761224524a3783a968bd5d1 Mon Sep 17 00:00:00 2001 From: Brian Hung Date: Sat, 7 Jun 2025 22:10:00 -0700 Subject: [PATCH] fix grammar spelling --- base/src/model.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/base/src/model.rs b/base/src/model.rs index 7ceb536..f2879cb 100644 --- a/base/src/model.rs +++ b/base/src/model.rs @@ -106,15 +106,15 @@ pub struct Model { pub(crate) shared_strings: HashMap, /// An instance of the parser pub(crate) parser: Parser, - /// The list of cells with formulas that are evaluated of being evaluated + /// The list of cells with formulas that are evaluated or being evaluated pub(crate) cells: HashMap<(u32, i32, i32), CellState>, /// The locale of the model pub(crate) locale: Locale, - /// Tha language used + /// The language used pub(crate) language: Language, /// The timezone used to evaluate the model pub(crate) tz: Tz, - /// The view id. A view consist of a selected sheet and ranges. + /// The view id. A view consists of a selected sheet and ranges. pub(crate) view_id: u32, }