aboutsummaryrefslogtreecommitdiff
path: root/_content/doc/modules
diff options
context:
space:
mode:
authorAndrea Simonini <andrea.simonini@gmail.com>2021-02-17 17:59:26 +0000
committerDmitri Shuralyov <dmitshur@golang.org>2021-02-17 19:01:39 +0000
commitf6867a46a84b962ac563f4fa35e4a31dd611db5a (patch)
treefa26242c9f5f34bd4d837b81dd003d808145f686 /_content/doc/modules
parenta9ebb32b2bed8967e3688d11879261e95ac73891 (diff)
downloadgo-x-website-f6867a46a84b962ac563f4fa35e4a31dd611db5a.tar.xz
_content/doc/modules: fix typo in gomod-ref.md
Fix typo in the description of the sample replace directive. Change-Id: Ifce15609e096253c07137bf6727568bde58982c3 GitHub-Last-Rev: 54973c41cf0cf7272e4940c597bb1ee814f9ce29 GitHub-Pull-Request: golang/website#38 Reviewed-on: https://go-review.googlesource.com/c/website/+/292991 Reviewed-by: Steve Traut <straut@google.com> Trust: Dmitri Shuralyov <dmitshur@golang.org>
Diffstat (limited to '_content/doc/modules')
-rw-r--r--_content/doc/modules/gomod-ref.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_content/doc/modules/gomod-ref.md b/_content/doc/modules/gomod-ref.md
index 70f482ca..7eb41b06 100644
--- a/_content/doc/modules/gomod-ref.md
+++ b/_content/doc/modules/gomod-ref.md
@@ -242,7 +242,7 @@ replacement path when resolving the dependency.
replace example.com/othermodule => example.com/othermodule v1.2.3
```
- The following example replaces module version v1.2.5 with version v1.2.5 of
+ The following example replaces module version v1.2.5 with version v1.2.3 of
the same module.
```