Skip to content

Commit

Permalink
Case sensitive package name in example
Browse files Browse the repository at this point in the history
Although it does not matter for go if you do `go get github.com/NYTimes/gziphandler` or `go get github.com/nytimesimes/gziphandler` you might end up with two copies of your library in your $GOPATH depending where you copy the package path from. (example from README or browser url)
  • Loading branch information
TheHippo committed Sep 24, 2015
1 parent 9939d5d commit 185f9df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package main
import (
"io"
"net/http"
"github.com/nytimes/gziphandler"
"github.com/NYTimes/gziphandler"
)

func main() {
Expand Down

0 comments on commit 185f9df

Please sign in to comment.