Skip to content

Commit

Permalink
Fix typos in error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
msk committed Feb 9, 2024
1 parent b08ab6c commit cfe641d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/migration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async fn transfer_csv_column_extras(db: &super::Database, store: &super::Store)

if added != cur {
return Err(anyhow!(
"corrupted category table: inserting {cur} and asigned with {added}"
"corrupted category table: inserting {cur} and assigned with {added}"
));
}

Expand All @@ -115,7 +115,7 @@ async fn transfer_csv_column_extras(db: &super::Database, store: &super::Store)
)?;
if added != cur || added != entry.id {
return Err(anyhow!(
"corrupted category table: inserting {cur} and asigned with {added}"
"corrupted category table: inserting {cur} and assigned with {added}"
));
}
cur += 1;
Expand Down

0 comments on commit cfe641d

Please sign in to comment.