Skip to content

Commit

Permalink
Merge pull request #3 from orhun/chore/update_crate_desc
Browse files Browse the repository at this point in the history
Update the crate description
  • Loading branch information
dtolnay committed Dec 9, 2023
2 parents 5f76bfd + cb4a27b commit 20864b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "cargo-docs-rs"
version = "0.1.5"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["development-tools::cargo-plugins"]
description = "Immitate the documentation build that docs.rs would do"
description = "Imitate the documentation build that docs.rs would do"
edition = "2021"
keywords = ["cargo", "subcommand", "docs-rs", "documentation"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::env;
use std::io::{self, Write as _};
use std::process::{self, Command, Stdio};

cargo_subcommand_metadata::description!("Immitate the documentation build that docs.rs would do");
cargo_subcommand_metadata::description!("Imitate the documentation build that docs.rs would do");

fn main() {
if let Err(error) = do_main() {
Expand Down
2 changes: 1 addition & 1 deletion src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const MANIFEST_OPTIONS: &str = "Manifest Options";
#[derive(Parser)]
#[command(bin_name = "cargo", version, author, disable_help_subcommand = true)]
pub enum Subcommand {
/// Immitate the documentation build that docs.rs would do
/// Imitate the documentation build that docs.rs would do
#[command(name = "docs-rs", version, author, disable_version_flag = true)]
Doc(Doc),
}
Expand Down

0 comments on commit 20864b7

Please sign in to comment.