File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ use crate::api::*;
22use actix_web:: web;
33
44pub fn config_services ( cfg : & mut web:: ServiceConfig ) {
5- info ! ( "Configurating routes..." ) ;
5+ info ! ( "Configuring routes..." ) ;
66 cfg. service (
77 web:: scope ( "/api" )
88 . service ( ping_controller:: ping)
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ pub type Pool = r2d2::Pool<ConnectionManager<Connection>>;
1818
1919#[ cfg( not( test) ) ]
2020pub fn migrate_and_config_db ( url : & str ) -> Pool {
21- info ! ( "Migrating and configurating database..." ) ;
21+ info ! ( "Migrating and configuring database..." ) ;
2222 let manager = ConnectionManager :: < Connection > :: new ( url) ;
2323 let pool = r2d2:: Pool :: builder ( ) . build ( manager) . expect ( "Failed to create pool." ) ;
2424 embedded_migrations:: run ( & pool. get ( ) . expect ( "Failed to migrate." ) ) ;
@@ -29,7 +29,7 @@ pub fn migrate_and_config_db(url: &str) -> Pool {
2929#[ cfg( test) ]
3030pub fn migrate_and_config_db ( url : & str ) -> Pool {
3131 use crate :: diesel:: RunQueryDsl ;
32- info ! ( "Migrating and configurating database..." ) ;
32+ info ! ( "Migrating and configuring database..." ) ;
3333 let manager = ConnectionManager :: < Connection > :: new ( url) ;
3434 let pool = r2d2:: Pool :: builder ( ) . build ( manager) . expect ( "Failed to create pool." ) ;
3535
You can’t perform that action at this time.
0 commit comments