From 350e23f830a9f04c299afa6f5f389a9f94d276e7 Mon Sep 17 00:00:00 2001 From: antifallobst Date: Fri, 15 Sep 2023 00:07:24 +0200 Subject: [PATCH] fix: remoced double about from cli help --- zauberschule/src/main.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/zauberschule/src/main.rs b/zauberschule/src/main.rs index f56d72a..e7934ba 100644 --- a/zauberschule/src/main.rs +++ b/zauberschule/src/main.rs @@ -5,11 +5,8 @@ use clap::Parser; use graph::Graph; use std::path::Path; -/// BWINF 42.1 -/// -/// Aufgabe 3: Zauberschule #[derive(Parser, Debug)] -#[command(author, version, about, long_about = None)] +#[command(author, version, long_about = None)] struct Args { /// The file containing the two maps file: String,