From d736f532a37b6659a85892a07afae86a8600920d Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 16 Aug 2022 14:40:55 +0200 Subject: [PATCH] typo --- src/ics.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ics.rs b/src/ics.rs index 5e1717c..5534617 100644 --- a/src/ics.rs +++ b/src/ics.rs @@ -8,7 +8,10 @@ pub fn export(courses: Vec, filename: &str) { // Create events which contains the information regarding the course for course in courses { - let mut event = Event::new(uuid::Uuid::new_v4().to_string(), dt_ical(chrono::Utc::now())); + let mut event = Event::new( + uuid::Uuid::new_v4().to_string(), + dt_ical(chrono::Utc::now()), + ); // Public event event.push(Class::public());