From eee01a4941d91b63571205d5eb70d90a0cc1f098 Mon Sep 17 00:00:00 2001 From: Mariano Riefolo Date: Sat, 10 Aug 2024 12:02:21 +0200 Subject: [PATCH] fix: remove points from expects --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index bca68a0..2499f1f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,6 +3,6 @@ use rusqlite::Connection; mod db; fn main() { - let connection = Connection::open("database.db").expect("Failed to open database."); - db::init(connection).expect("Failed to create database."); + let connection = Connection::open("database.db").expect("Failed to open database"); + db::init(connection).expect("Failed to create database"); }