Skip to content

Commit 562cdd4

Browse files
committed
fix doc
1 parent 82e658e commit 562cdd4

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

doc.go

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ Writing bash completion scripts is a hard work. This package provides an easy wa
55
to create bash completion scripts for any command, and also an easy way to install/uninstall
66
the completion of the command.
77
8-
go command bash completion
8+
Go Command Bash Completion
99
10-
In [gocomplete](./cmd/gocomplete) there is an example for bash completion for the `go` command line.
10+
In ./cmd/gocomplete there is an example for bash completion for the `go` command line.
1111
1212
This is an example that uses the `complete` package on the `go` command - the `complete` package
13-
can also be used to implement any completions, see [Usage](#usage).
13+
can also be used to implement any completions, see #usage.
1414
1515
Install
1616
@@ -23,14 +23,13 @@ Install
2323
2424
Uninstall by `gocomplete -uninstall`
2525
26-
2726
Features
2827
2928
- Complete `go` command, including sub commands and all flags.
3029
- Complete packages names or `.go` files when necessary.
3130
- Complete test names after `-run` flag.
3231
33-
complete package
32+
Complete package
3433
3534
Supported shells:
3635
@@ -105,7 +104,7 @@ Self completing program
105104
106105
In case that the program that we want to complete is written in go we
107106
can make it self completing.
108-
Here is an [example](./example/self/main.go)
107+
Here is an example: ./example/self/main.go .
109108
110109
*/
111110
package complete

0 commit comments

Comments
 (0)