aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Irwin <conrad.irwin@gmail.com>2024-12-09 14:08:36 -0700
committerGopher Robot <gobot@golang.org>2024-12-09 22:12:37 +0000
commit5de918cf07ece2a2d683735d014aa5fd3f0e18f6 (patch)
tree32a40fe9527323035208af3d32876cd7edb01e81
parent84bc8a71547811f19ea901d0c8e26f527c4328c7 (diff)
downloadgo-x-website-5de918cf07ece2a2d683735d014aa5fd3f0e18f6.tar.xz
_content/doc: fix typo in modules/managing-dependencies.md
Change-Id: I3c9a6d7f7a193485d06473eba8595a3a70b09e1a Reviewed-on: https://go-review.googlesource.com/c/website/+/634735 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Michael Matloob <matloob@golang.org> Reviewed-by: Will Faught <will.faught@gmail.com>
-rw-r--r--_content/doc/modules/managing-dependencies.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_content/doc/modules/managing-dependencies.md b/_content/doc/modules/managing-dependencies.md
index dea288df..f28d2df3 100644
--- a/_content/doc/modules/managing-dependencies.md
+++ b/_content/doc/modules/managing-dependencies.md
@@ -526,7 +526,7 @@ requirements in your [module graph](/ref/mod#glos-module-graph). They
participate in [minimal version selection](/ref/mod#minimal-version-selection)
and respect `require`, `replace` and `exclude` directives. Due to module
pruning, when you depend on a module that itself has a tool dependency,
-requirements that exist to just to satisfy that tool dependency do not usually
+requirements that exist just to satisfy that tool dependency do not usually
become requirements of your module.
The `tool` [meta-pattern](/cmd/go#hdr-Package_lists_and_patterns) provides a way to perform operations on all tools simultaneously. For example you can upgrade all tools with `go get -u tool`, or install them all to $GOBIN with `go install tool`.