chore: fix typos (#7049)

This commit is contained in:
DaniPopes
2024-03-08 15:23:37 +01:00
committed by GitHub
parent 7fa35042dd
commit 3c028e5ef4
56 changed files with 93 additions and 93 deletions

View File

@ -84,11 +84,11 @@ impl Command {
}
let max_widths = table.column_max_content_widths();
let mut seperator = Row::new();
let mut separator = Row::new();
for width in max_widths {
seperator.add_cell(Cell::new("-".repeat(width as usize)));
separator.add_cell(Cell::new("-".repeat(width as usize)));
}
table.add_row(seperator);
table.add_row(separator);
let mut row = Row::new();
row.add_cell(Cell::new("Tables"))
@ -259,11 +259,11 @@ impl Command {
}
let max_widths = table.column_max_content_widths();
let mut seperator = Row::new();
let mut separator = Row::new();
for width in max_widths {
seperator.add_cell(Cell::new("-".repeat(width as usize)));
separator.add_cell(Cell::new("-".repeat(width as usize)));
}
table.add_row(seperator);
table.add_row(separator);
let mut row = Row::new();
row.add_cell(Cell::new("Total"))

View File

@ -259,7 +259,7 @@ impl Command {
"Mismatched trie updates"
);
// Drop without comitting.
// Drop without committing.
drop(provider_rw);
Ok(())