From d156170971a4e1e93b56249a49286d5b69b9b924 Mon Sep 17 00:00:00 2001 From: Frank Petrilli Date: Sun, 24 Feb 2019 16:08:38 -0800 Subject: [PATCH] Minor typo fix conect => connect --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index fbdf1a09..51c68891 100644 --- a/src/main.rs +++ b/src/main.rs @@ -211,7 +211,7 @@ mod migrations { pub fn run_migrations() { // Make sure the database is up to date (create if it doesn't exist, or run the migrations) - let connection = crate::db::get_connection().expect("Can't conect to DB"); + let connection = crate::db::get_connection().expect("Can't connect to DB"); use std::io::stdout; embedded_migrations::run_with_output(&connection, &mut stdout()).expect("Can't run migrations");