aboutsummaryrefslogtreecommitdiffstats
path: root/_examples
diff options
context:
space:
mode:
authorEric Billingsley <eric@calculi.com>2018-06-08 15:19:12 -0700
committerEric Billingsley <eric@calculi.com>2018-06-08 15:19:12 -0700
commitbf6190841e8b6cd3a216bc056e5b71c73e18c410 (patch)
tree8e5a48002cf8aa1d0cdb4bac838b1af15f34d1e3 /_examples
parentb23570073eaee3489e5e3d666f22ba5cbeb53243 (diff)
downloadgo-git-bf6190841e8b6cd3a216bc056e5b71c73e18c410.tar.gz
plumbing/transport: http, Adds token authentication support [Fixes #858]
Signed-off-by: Eric Billingsley <ebilling@babrains.com>
Diffstat (limited to '_examples')
-rw-r--r--_examples/branch/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/_examples/branch/main.go b/_examples/branch/main.go
index fa1ad01..ff33ead 100644
--- a/_examples/branch/main.go
+++ b/_examples/branch/main.go
@@ -28,7 +28,7 @@ func main() {
// Create a new plumbing.HashReference object with the name of the branch
// and the hash from the HEAD. The reference name should be a full reference
- // name and now a abbreviated one, as is used on the git cli.
+ // name and not an abbreviated one, as is used on the git cli.
//
// For tags we should use `refs/tags/%s` instead of `refs/heads/%s` used
// for branches.