Browse Source

s/getArgs/getArguments/g

renovate/configure
Yota Toyama 8 years ago
parent
commit
37408783d4
  1. 2
      arguments.go
  2. 2
      main.go

2
arguments.go

@ -41,7 +41,7 @@ type arguments struct {
verbose bool
}
func getArgs() (arguments, error) {
func getArguments() (arguments, error) {
args, err := docopt.Parse(fmt.Sprintf(usage, defaultConcurrency), nil, true, "liche", true)
if err != nil {

2
main.go

@ -3,7 +3,7 @@ package main
import "os"
func main() {
args, err := getArgs()
args, err := getArguments()
if err != nil {
printToStderr(err.Error())

Loading…
Cancel
Save