diff options
author | Michael Muré <batolettre@gmail.com> | 2019-02-18 23:16:47 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-03-01 22:40:26 +0100 |
commit | 54f9838f0ab22ce5285f21cdd117ad81c737d822 (patch) | |
tree | f6439599dec013d8f30620b5a534a1ebdb8f7388 /identity | |
parent | 947ea63522610bd16c32cf70812c129eda9bbb02 (diff) | |
download | git-bug-54f9838f0ab22ce5285f21cdd117ad81c737d822.tar.gz |
identity: working identity cache
Diffstat (limited to 'identity')
-rw-r--r-- | identity/identity.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/identity/identity.go b/identity/identity.go index 35edca18..193a3013 100644 --- a/identity/identity.go +++ b/identity/identity.go @@ -84,7 +84,7 @@ func ReadRemote(repo repository.Repo, remote string, id string) (*Identity, erro return read(repo, ref) } -// read will load and parse an identity frdm git +// read will load and parse an identity from git func read(repo repository.Repo, ref string) (*Identity, error) { refSplit := strings.Split(ref, "/") id := refSplit[len(refSplit)-1] |