Skip to content
This repository was archived by the owner on Oct 11, 2018. It is now read-only.

Commit 1a3c336

Browse files
authored
Merge pull request #33 from jgeiger/master
Fix typos in README.md
2 parents f791b0e + b511956 commit 1a3c336

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Tutorial for vim-go. A simple tutorial on how to install and use vim-go.
2525
12. [Understand it](#understand-it)
2626
* [Documentation Lookup](#documentation-lookup)
2727
* [Identifier resolution](#identifier-resolution)
28-
* [Identifier higlighting](#identifier-highlighting)
28+
* [Identifier highlighting](#identifier-highlighting)
2929
* [Dependencies and files](#dependencies-and-files)
3030
* [Guru](#guru)
3131
13. [Refactor it](#refactor-it)
@@ -730,7 +730,7 @@ lf -> log.Printf()
730730
```
731731

732732
Here `ff` and `lf` are special. They dynamically copy the variable name into
733-
the format string as well. Try it youself. Move your cursor to the end of the
733+
the format string as well. Try it yourself. Move your cursor to the end of the
734734
main function and type `ff` and hit tab. After expanding the snippet you can
735735
start typing. Type `string(out)` and you'll see that both the format string and
736736
the variadic arguments will be filled with the same string you have typed.
@@ -1388,7 +1388,7 @@ to find the documentation, just hit `K` in normal mode!
13881388
`:GoDoc` just shows the documentation for a given identifier. But it's not a
13891389
**documentation explorer**, if you want to explore the documentation there is
13901390
third-party plugin that does it:
1391-
[go-explorer](https://github.com/garyburd/go-explorer). There is a open bug to
1391+
[go-explorer](https://github.com/garyburd/go-explorer). There is an open bug to
13921392
include it into vim-go.
13931393

13941394
### Identifier resolution
@@ -2120,7 +2120,7 @@ done.
21202120

21212121
`vim-go` has also features to easily share your code with other via
21222122
https://play.golang.org/. As you know the Go playground is a perfect place to
2123-
share small snippets, exercises or and tips&tricks. There are times you are
2123+
share small snippets, exercises or and tips & tricks. There are times you are
21242124
playing with an idea and want to share with others. You copy the code and visit
21252125
play.golang.org and then paste it. `vim-go` makes all these better with the
21262126
`:GoPlay` command.

0 commit comments

Comments
 (0)