diff --git a/Modules.md b/Modules.md index bdb84d51..72e34aca 100644 --- a/Modules.md +++ b/Modules.md @@ -163,7 +163,7 @@ Your typical day-to-day workflow can be: * Add import statements to your `.go` code as needed. * Standard commands like `go build` or `go test` will automatically add new dependencies as needed to satisfy imports (updating `go.mod` and downloading the new dependencies). -* When needed, more specific versions of dependencies can be chosen with commands such as `go get foo@v1.2.3`, `go get foo@master` (`foo@tip` with mercurial), `go get foo@e3702bed2`, or by editing `go.mod` directly. +* When needed, more specific versions of dependencies can be chosen with commands such as `go get foo@v1.2.3`, `go get foo@master` (`foo@default` with mercurial), `go get foo@e3702bed2`, or by editing `go.mod` directly. A brief tour of other common functionality you might use: