Skip to content

Commit f091e9e

Browse files
committed
Merge pull request #10 from mboersma/docopt-go-gettable
fix(package): import and "go get" as docopt-go
2 parents 717d0bc + 95ed7bf commit f091e9e

19 files changed

+20
-20
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Golang implementation of [docopt](http://docopt.org/) 0.6.1+fix
55

66
## Installation
77

8-
import "github.com/docopt/docopt.go" and then run `go get`.
8+
import "github.com/docopt/docopt-go" and then run `go get`.
99

1010
## API
1111

@@ -45,7 +45,7 @@ package main
4545

4646
import (
4747
"fmt"
48-
"github.com/docopt/docopt.go"
48+
"github.com/docopt/docopt-go"
4949
)
5050

5151
func main() {

docopt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ import (
5858
//
5959
// import (
6060
// "fmt"
61-
// "github.com/docopt/docopt.go"
61+
// "github.com/docopt/docopt-go"
6262
// )
6363
//
6464
// func main() {

examples/arguments_example.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"fmt"
5-
"github.com/docopt/docopt.go"
5+
"github.com/docopt/docopt-go"
66
)
77

88
func main() {

examples/calculator_example.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"fmt"
5-
"github.com/docopt/docopt.go"
5+
"github.com/docopt/docopt-go"
66
)
77

88
func main() {

examples/config_file_example.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"encoding/json"
55
"fmt"
6-
"github.com/docopt/docopt.go"
6+
"github.com/docopt/docopt-go"
77
"strings"
88
)
99

examples/counted_example.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"fmt"
5-
"github.com/docopt/docopt.go"
5+
"github.com/docopt/docopt-go"
66
)
77

88
func main() {

examples/git/git.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"fmt"
5-
"github.com/docopt/docopt.go"
5+
"github.com/docopt/docopt-go"
66
"os"
77
"os/exec"
88
)

examples/git/git_add.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"fmt"
5-
"github.com/docopt/docopt.go"
5+
"github.com/docopt/docopt-go"
66
)
77

88
func cmdAdd(argv []string) (err error) {

examples/git/git_branch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"fmt"
5-
"github.com/docopt/docopt.go"
5+
"github.com/docopt/docopt-go"
66
)
77

88
func main() {

examples/git/git_checkout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"fmt"
5-
"github.com/docopt/docopt.go"
5+
"github.com/docopt/docopt-go"
66
)
77

88
func main() {

0 commit comments

Comments
 (0)