1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #11834 from jamiehannaford/contributor-guide-fix

Make gofmt use the filename previously referenced
This commit is contained in:
Alexander Morozov 2015-03-26 12:41:53 -07:00
commit 42f9594fd3

View file

@ -69,7 +69,7 @@ Follow this workflow as you work:
For example, if you edited the `docker.go` file you would format the file For example, if you edited the `docker.go` file you would format the file
like this: like this:
</p> </p>
<p><code>$ gofmt -s -w file.go</code></p> <p><code>$ gofmt -s -w docker.go</code></p>
<p> <p>
Most file editors have a plugin to format for you. Check your editor's Most file editors have a plugin to format for you. Check your editor's
documentation. documentation.