diff --git a/.circleci/config.yml b/.circleci/config.yml
index 53f457b..56fa38e 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -12,7 +12,7 @@ jobs:
command: |
go get -v github.com/jstemmer/go-junit-report
go get -v -t -d ./...
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s v1.8
+ curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s v1.10
mkdir ~/report
when: always
- run:
diff --git a/README.md b/README.md
index 9a54198..f69aec9 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@

-# Kong is a command-line parser for Go [](https://circleci.com/gh/alecthomas/kong)
+# Kong is a command-line parser for Go [](http://godoc.org/github.com/alecthomas/kong) [](https://circleci.com/gh/alecthomas/kong)
diff --git a/camelcase.go b/camelcase.go
index 7d889b5..acf29f7 100644
--- a/camelcase.go
+++ b/camelcase.go
@@ -86,5 +86,5 @@ func camelCase(src string) (entries []string) {
entries = append(entries, string(s))
}
}
- return
+ return entries
}