From 185f9df07e0ca9673efb7ec518f7e87828158b5f Mon Sep 17 00:00:00 2001 From: Philipp Klose Date: Thu, 24 Sep 2015 19:12:55 +0200 Subject: [PATCH] Case sensitive package name in example 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) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 01083df..b1d55e2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ package main import ( "io" "net/http" - "github.com/nytimes/gziphandler" + "github.com/NYTimes/gziphandler" ) func main() {