diff options
author | Jay Conrod <jayconrod@google.com> | 2019-08-21 13:18:14 -0400 |
---|---|---|
committer | Dmitri Shuralyov <dmitshur@golang.org> | 2019-08-21 17:22:49 +0000 |
commit | b5e6ffc535e6405a838936fbfd39e2ad1c07bca4 (patch) | |
tree | 5276c2fa7b6d8c03357bd0e6378a4f3c12bd82da | |
parent | e69e2dc8e2c8567e32d0a9098bf6cef7c7b364a0 (diff) |
content: fix link formatting in 'Migrating to Go Modules'
Change-Id: I752bd1667a361248f5057087c6c61ba6a504ab57
Reviewed-on: https://go-review.googlesource.com/c/blog/+/191158
Reviewed-by: Jean de Klerk <deklerk@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
-rw-r--r-- | content/migrating-to-go-modules.article | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/migrating-to-go-modules.article b/content/migrating-to-go-modules.article index 7c87db7..37bbb89 100644 --- a/content/migrating-to-go-modules.article +++ b/content/migrating-to-go-modules.article @@ -112,7 +112,7 @@ For a Go project without a dependency management system, start by creating a `go go 1.12 $ -Without a configuration file from a previous dependency manager, `go`mod`init` will create a `go.mod` file with only the `module` and `go` directives. In this example, we set the module path to `golang.org/x/blog` because that is its [https://golang.org/cmd/go/#hdr-Remote_import_paths][custom import path]. Users may import packages with this path, and we must be careful not to change it. +Without a configuration file from a previous dependency manager, `go`mod`init` will create a `go.mod` file with only the `module` and `go` directives. In this example, we set the module path to `golang.org/x/blog` because that is its [[https://golang.org/cmd/go/#hdr-Remote_import_paths][custom import path]]. Users may import packages with this path, and we must be careful not to change it. The `module` directive declares the module path, and the `go` directive declares the expected version of the Go language used to compile the code within the module. |