Apply suggestions from code review
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
diff --git a/spatialbench-cli/src/main.rs b/spatialbench-cli/src/main.rs
index 55eefd6..9456f95 100644
--- a/spatialbench-cli/src/main.rs
+++ b/spatialbench-cli/src/main.rs
@@ -130,7 +130,7 @@
/// Target size in row group bytes in Parquet files
///
/// Row groups are the typical unit of parallel processing and compression
- /// with many query engines. Therfore, smaller row groups enable better
+ /// with many query engines. Therefore, smaller row groups enable better
/// parallelism and lower peak memory use but may reduce compression
/// efficiency.
///
diff --git a/spatialbench-cli/src/output_plan.rs b/spatialbench-cli/src/output_plan.rs
index f9ad376..a80533b 100644
--- a/spatialbench-cli/src/output_plan.rs
+++ b/spatialbench-cli/src/output_plan.rs
@@ -131,7 +131,7 @@
output_dir: PathBuf,
/// The generated output plans
output_plans: Vec<OutputPlan>,
- /// Output directores that have been created so far
+ /// Output directories that have been created so far
/// (used to avoid creating the same directory multiple times)
created_directories: HashSet<PathBuf>,
}
diff --git a/spatialbench-cli/tests/cli_integration.rs b/spatialbench-cli/tests/cli_integration.rs
index d4f9b6d..1c6028d 100644
--- a/spatialbench-cli/tests/cli_integration.rs
+++ b/spatialbench-cli/tests/cli_integration.rs
@@ -430,7 +430,7 @@
verify_table(temp_dir.path(), "driver", 1, "v1");
}
-/// Read the N files from `output_dir/table_name/table_name.part.tml` into a
+/// Read the N files from `output_dir/table_name/table_name.part.tbl` into a
/// single buffer and compare them to the contents of the reference file
fn verify_table(output_dir: &Path, table_name: &str, parts: usize, scale_factor: &str) {
let mut output_contents = Vec::new();