diff --git a/Cargo.toml b/Cargo.toml index b1b4a18..eb12f60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ indoc = "*" [package] authors = ["Kevin Amado "] -description = "The uncompromising Nix formatter" +description = "The Uncompromising Nix Code Formatter" edition = "2021" name = "alejandra" repository = "https://github.com/kamadorueda/alejandra" diff --git a/flake.nix b/flake.nix index 0745e65..a3aa634 100644 --- a/flake.nix +++ b/flake.nix @@ -1,4 +1,5 @@ { + description = "The Uncompromising Nix Code Formatter."; inputs = { fenix.url = "github:nix-community/fenix"; fenix.inputs.nixpkgs.follows = "nixpkgs"; diff --git a/src/cli.rs b/src/cli.rs index fabd06e..06bd9d6 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -1,7 +1,6 @@ pub fn parse(args: Vec) -> clap::ArgMatches { - clap::App::new("alejandra") - .version("v0.1.0") - .about("The uncompromising Nix formatter.") + clap::App::new("Alejandra") + .about("The Uncompromising Nix Code Formatter.") .arg( clap::Arg::new("debug") .help("Enable debug mode.")