Fix typos

This commit is contained in:
Roman Moisieiev 2025-09-11 12:35:50 +01:00
parent 7526a82bb7
commit 7e90f45196
14 changed files with 32 additions and 32 deletions

View file

@ -102,7 +102,7 @@ async fn add_server(db: &Pool<Sqlite>, ctx: &Context, server: &Servers) -> Resul
.fetch_optional(db)
.await;
// if the entry does not exist already tehn do a user update
// if the entry does not exist already then do a user update
let (update, current_remove, current_role, past_remove, past_role) = match &existing {
None => (true, false, None, false, None),
Some(x) => {