From efcc5ffb587f58f9f08808b107a1395d7da08169 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Fri, 20 Dec 2013 09:26:26 +1100 Subject: [PATCH] go.tools/cmd/goimports: rename README to doc.go README is a GitHub thing. Let's do the godoc thing. R=golang-dev, crawshaw CC=golang-dev https://golang.org/cl/44030046 --- cmd/goimports/{README => doc.go} | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) rename cmd/goimports/{README => doc.go} (88%) diff --git a/cmd/goimports/README b/cmd/goimports/doc.go similarity index 88% rename from cmd/goimports/README rename to cmd/goimports/doc.go index 6a4a8106..d48d09cf 100644 --- a/cmd/goimports/README +++ b/cmd/goimports/doc.go @@ -1,5 +1,7 @@ -This tool updates your Go import lines, adding missing ones and -removing unreferenced ones. +/* + +Command goimports updates your Go import lines, +adding missing ones and removing unreferenced ones. $ go get code.google.com/p/go.tools/cmd/goimports @@ -28,3 +30,6 @@ For GoSublime, follow the steps described here: For other editors, you probably know what to do. Happy hacking! + +*/ +package main