diff options
author | Antonio Jesus Navarro Perez <antonio@sourced.tech> | 2017-02-28 12:21:02 +0100 |
---|---|---|
committer | Antonio Jesus Navarro Perez <antonio@sourced.tech> | 2017-02-28 12:21:02 +0100 |
commit | d24ea4984ce6871ea24eb376325082602c766295 (patch) | |
tree | b16a6f4b7171e3e1946fad91bde7a6226feab55e /_examples/remotes | |
parent | 305f28004ecbc03ea353437cf4c76423d93fbbd8 (diff) | |
download | go-git-d24ea4984ce6871ea24eb376325082602c766295.tar.gz |
Fix typos
Diffstat (limited to '_examples/remotes')
-rw-r--r-- | _examples/remotes/main.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/_examples/remotes/main.go b/_examples/remotes/main.go index 8c59a67..06ffdd1 100644 --- a/_examples/remotes/main.go +++ b/_examples/remotes/main.go @@ -11,11 +11,11 @@ import ( ) // Example of how to: -// - Create a new repository into memory -// - Create a new remote called "example" +// - Create a new in-memory repository +// - Create a new remote named "example" // - List remotes and print them // - Pull using the new remote "example" -// - Iterate again the references, but only showing hash references, not simbolic ones +// - Iterate the references again, but only showing hash references, not symbolic ones // - Remove remote "example" func main() { // Create a new repository |