aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/skylark
diff options
context:
space:
mode:
Diffstat (limited to 'site/docs/skylark')
-rw-r--r--site/docs/skylark/aspects.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/docs/skylark/aspects.md b/site/docs/skylark/aspects.md
index faa38f6ee7..29de0eb17c 100644
--- a/site/docs/skylark/aspects.md
+++ b/site/docs/skylark/aspects.md
@@ -177,15 +177,15 @@ on the target objects representing its `proto_deps` attribute values.
### Applying aspects from command line.
-Aspects can also be applied on the command line, using the `--aspect` flag:
+Aspects can also be applied on the command line, using the `--aspects` flag:
```
bazel build //java/com/company/example:main \
- --aspect path/to/extension.bzl%metal_proto_aspect
+ --aspects path/to/extension.bzl%metal_proto_aspect
```
-`--aspect` flag takes one argument, which is a specification of the aspect in
+`--aspects` flag takes one argument, which is a specification of the aspect in
the format `<extension file path>%<aspect top-level name>`.