cleanup docopt example import statement
diff --git a/README.md b/README.md
index 133857b..61f32fb 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@
 
 import (
     "fmt"
-    docopt "github.com/docopt/docopt.go"
+    "github.com/docopt/docopt.go"
 )
 
 func main() {
diff --git a/docopt.go b/docopt.go
index a5b03b5..74815d2 100644
--- a/docopt.go
+++ b/docopt.go
@@ -58,7 +58,7 @@
 //
 //  import (
 //      "fmt"
-//      docopt "github.com/docopt/docopt.go"
+//      "github.com/docopt/docopt.go"
 //  )
 //
 //  func main() {
diff --git a/examples/naval_fate.go b/examples/naval_fate.go
index b04b26a..ef34bc4 100644
--- a/examples/naval_fate.go
+++ b/examples/naval_fate.go
@@ -2,7 +2,7 @@
 
 import (
 	"fmt"
-	docopt "github.com/docopt/docopt.go"
+	"github.com/docopt/docopt.go"
 )
 
 func main() {