diff --git a/Modules.md b/Modules.md index 033d504c..194fcccf 100644 --- a/Modules.md +++ b/Modules.md @@ -753,7 +753,7 @@ Typically your module's `go.sum` file should be committed along with your `go.mo ### Should I still add a 'go.mod' file if I do not have any dependencies? -Yes. This supports working outside of GOPATH, helps communicate to the ecosystem that you are opting in to modules, and in addition the `module` directive in your `go.mod` serves as a definitive declaration of the identify of your code (which is one reason why import comments might eventually be deprecated). Of course, modules are purely an opt-in capability in Go 1.11. +Yes. This supports working outside of GOPATH, helps communicate to the ecosystem that you are opting in to modules, and in addition the `module` directive in your `go.mod` serves as a definitive declaration of the identity of your code (which is one reason why import comments might eventually be deprecated). Of course, modules are purely an opt-in capability in Go 1.11. ## FAQs — Semantic Import Versioning