Fix typos

This commit is contained in:
Kian-Meng Ang
2022-08-04 23:06:54 +08:00
parent 961bb6c5f4
commit bb42841a66
19 changed files with 43 additions and 43 deletions

View File

@@ -78,7 +78,7 @@ impl Server {
//impl DatabaseBuilder {
// #[cfg(not(tarpaulin_include))]
// fn extract_database_url(url: &Url) -> Self {
// debug!("Databse name: {}", url.path());
// debug!("Database name: {}", url.path());
// let mut path = url.path().split('/');
// path.next();
// let name = path.next().expect("no database name").to_string();
@@ -223,7 +223,7 @@ fn set_database_url(s: &mut Config) {
.expect("Couldn't access database name")
),
)
.expect("Couldn't set databse url");
.expect("Couldn't set database url");
}
//#[cfg(test)]