From d237ff3098fe2907f5f79e7b5ab3504f4b2aeda9 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Wed, 24 Jan 2024 09:11:44 +0100 Subject: [PATCH] doc --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index f3e1e90..73a6909 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,15 +10,15 @@ mod utils; #[derive(Parser)] #[clap(version, about, long_about = None)] struct Args { - /// The class you want to get the timetable, i.e.: M1-LP + /// The class you want to get the timetable, i.e.: M1 #[clap(value_parser)] class: String, - /// The semester you want (1 or 2) + /// The semester you want (1 or 2), default to current semester #[clap(short, long, value_parser, value_name = "SEMESTER NUMBER")] semester: Option, - /// The year, default to the current year + /// The year, default to current year #[clap(short, long, value_parser, value_name = "YEAR")] year: Option,