From a9c9d1c3a20af5779145dbba8cdfbf0d1fbb960f Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Wed, 5 Aug 2020 22:21:44 +0200 Subject: Rename the project `git-suggestion` Since this is a Git command, this makes more sense to me. --- src/owner_repo.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/owner_repo.rs b/src/owner_repo.rs index 273ef6f..04839fc 100644 --- a/src/owner_repo.rs +++ b/src/owner_repo.rs @@ -56,8 +56,8 @@ pub struct OwnerRepo { } /// Parse an owner-repo pair from a Git remote. Can be either an HTTP URL -/// (`https://github.com/teddywing/github-suggestion.git`) or an SSH-style -/// reference (`git@github.com:teddywing/github-suggestion.git`). +/// (`https://github.com/teddywing/git-suggestion.git`) or an SSH-style +/// reference (`git@github.com:teddywing/git-suggestion.git`). impl FromStr for OwnerRepo { type Err = OwnerRepoError; @@ -108,7 +108,7 @@ impl OwnerRepo { } /// Parse an `OwnerRepo` from an SSH-style reference - /// (`git@github.com:teddywing/github-suggestion.git`). + /// (`git@github.com:teddywing/git-suggestion.git`). pub fn from_ssh(ssh: &str) -> Result { let address_path: Vec<_> = ssh.splitn(2, ':').collect(); let path = address_path.get(1) -- cgit v1.2.3