aboutsummaryrefslogtreecommitdiff
path: root/docs/go
diff options
context:
space:
mode:
authorJason Parraga <Sovietaced@gmail.com>2023-05-25 02:09:12 -0700
committerGitHub <noreply@github.com>2023-05-25 11:09:12 +0200
commitd4f9c9bde0e779f5e8f8908b1a18e1e249d6df3f (patch)
tree5022d0c7d58452fa08f63a6b91157596a15e2704 /docs/go
parentb84cd75919a40ce7d1409a6effbdd9a343cdaf72 (diff)
downloadbazelbuild-rules_go-d4f9c9bde0e779f5e8f8908b1a18e1e249d6df3f.tar.gz
Fix typo in load statement (#3570)
Diffstat (limited to 'docs/go')
-rw-r--r--docs/go/core/bzlmod.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/go/core/bzlmod.md b/docs/go/core/bzlmod.md
index 18f10d81..f116613b 100644
--- a/docs/go/core/bzlmod.md
+++ b/docs/go/core/bzlmod.md
@@ -78,7 +78,7 @@ If you have a use case that would require this, please explain it in an issue.
Add the following to your top-level BUILD file, including your Go module's path in a [Gazelle directive](https://github.com/bazelbuild/bazel-gazelle#directives):
```starlark
-load("@gazelle//:defs.bzl", "gazelle")
+load("@gazelle//:def.bzl", "gazelle")
# gazelle:prefix github.com/example/project
gazelle(name = "gazelle")