@@ -25,7 +25,7 @@ Tutorial for vim-go. A simple tutorial on how to install and use vim-go.
25
25
12 . [ Understand it] ( #understand-it )
26
26
* [ Documentation Lookup] ( #documentation-lookup )
27
27
* [ Identifier resolution] ( #identifier-resolution )
28
- * [ Identifier higlighting ] ( #identifier-highlighting )
28
+ * [ Identifier highlighting ] ( #identifier-highlighting )
29
29
* [ Dependencies and files] ( #dependencies-and-files )
30
30
* [ Guru] ( #guru )
31
31
13 . [ Refactor it] ( #refactor-it )
@@ -730,7 +730,7 @@ lf -> log.Printf()
730
730
```
731
731
732
732
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
734
734
main function and type ` ff ` and hit tab. After expanding the snippet you can
735
735
start typing. Type ` string(out) ` and you'll see that both the format string and
736
736
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!
1388
1388
` :GoDoc ` just shows the documentation for a given identifier. But it's not a
1389
1389
** documentation explorer** , if you want to explore the documentation there is
1390
1390
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
1392
1392
include it into vim-go.
1393
1393
1394
1394
### Identifier resolution
@@ -2120,7 +2120,7 @@ done.
2120
2120
2121
2121
` vim-go ` has also features to easily share your code with other via
2122
2122
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
2124
2124
playing with an idea and want to share with others. You copy the code and visit
2125
2125
play.golang.org and then paste it. ` vim-go ` makes all these better with the
2126
2126
` :GoPlay ` command.
0 commit comments