Skip to content

Commit 6c968cb

Browse files
committed
fix: update terminology from "CLI app" to "CLI tool"
CLI tool is a more apt description for git-mob
1 parent bb5eefa commit 6c968cb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "git-mob-tool"
33
version = "1.8.0"
44
authors = ["Mubashwer Salman Khurshid"]
55
edition = "2021"
6-
description = "A CLI app which can help users automatically add co-author(s) to git commits for pair/mob programming"
6+
description = "A CLI tool which can help users automatically add co-author(s) to git commits for pair/mob programming"
77
readme = "README.md"
88
repository = "https://github.com/Mubashwer/git-mob"
99
license = "MIT"

src/cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ use std::str;
1515
override_usage = "git mob [COMMAND] [OPTIONS]"
1616
)]
1717
#[command(propagate_version = true)]
18-
/// A CLI app which can help users automatically add co-author(s) to git commits
18+
/// A CLI tool which can help users automatically add co-author(s) to git commits
1919
/// for pair/mob programming.
2020
///
2121
/// A user can attribute a git commit to more than one author by adding one or more
2222
/// Co-authored-by trailers to the commit's message.
2323
/// Co-authored commits are visible on GitHub.
24-
/// This CLI app will helper users do the this automatically and also help them
24+
/// This CLI tool will helper users do the this automatically and also help them
2525
/// store and manage co-authors for pair/mob programming sessions.
2626
///
2727
/// Usage example:

tests/help.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ fn test_mob_help(ctx: TestContextCli) -> Result<(), Box<dyn Error>> {
1414
.assert()
1515
.success()
1616
.stdout(predicate::str::diff(
17-
r#"A CLI app which can help users automatically add co-author(s) to git commits for pair/mob programming.
17+
r#"A CLI tool which can help users automatically add co-author(s) to git commits for pair/mob programming.
1818
19-
A user can attribute a git commit to more than one author by adding one or more Co-authored-by trailers to the commit's message. Co-authored commits are visible on GitHub. This CLI app will helper users do the this automatically and also help them store and manage co-authors for pair/mob programming sessions.
19+
A user can attribute a git commit to more than one author by adding one or more Co-authored-by trailers to the commit's message. Co-authored commits are visible on GitHub. This CLI tool will helper users do the this automatically and also help them store and manage co-authors for pair/mob programming sessions.
2020
2121
Usage example:
2222
@@ -73,7 +73,7 @@ fn test_mob_help_summary(ctx: TestContextCli) -> Result<(), Box<dyn Error>> {
7373
.assert()
7474
.success()
7575
.stdout(predicate::str::diff(
76-
r#"A CLI app which can help users automatically add co-author(s) to git commits for pair/mob programming
76+
r#"A CLI tool which can help users automatically add co-author(s) to git commits for pair/mob programming
7777
7878
Usage: git mob [COMMAND] [OPTIONS]
7979

0 commit comments

Comments
 (0)