From 814a8b34cb40426d760e76a7e55b0a902c515953 Mon Sep 17 00:00:00 2001 From: Axel Kappel <69117984+Kl4rry@users.noreply.github.com> Date: Mon, 9 Sep 2024 17:55:54 +0200 Subject: [PATCH] fix typo --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/cli.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8691f07..9226d16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3597,7 +3597,7 @@ dependencies = [ [[package]] name = "simp" -version = "3.7.0" +version = "3.7.1" dependencies = [ "arboard", "bytemuck", diff --git a/Cargo.toml b/Cargo.toml index b9a485e..bf77dea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simp" -version = "3.7.0" +version = "3.7.1" authors = ["Axel Kappel"] edition = "2021" license = "Apache-2.0" diff --git a/src/cli.rs b/src/cli.rs index 361ed5c..904e982 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -13,7 +13,7 @@ pub fn get_clap_command() -> clap::Command { .arg( clap::Arg::new("generate-man") .long("generate-man") - .help("Generates manual page for quickshot") + .help("Generates manual page for simp") .action(clap::ArgAction::SetTrue), ) .arg(clap::Arg::new("file").help("Load this file").index(1))