aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/skylark
diff options
context:
space:
mode:
authorGravatar Yue Gan <yueg@google.com>2016-06-13 09:28:15 +0000
committerGravatar Yue Gan <yueg@google.com>2016-06-13 11:20:08 +0000
commit8d23e6061ce110971d75f7a15015a60d6e49a4d4 (patch)
treecb24fc709ae393c949002e6e7eb687da2e297e91 /site/docs/skylark
parent06212ef273696686e1e5a71baa3cb43d9154101d (diff)
Replace --aspect with --aspects.
Fixes #1375. -- MOS_MIGRATED_REVID=124706979
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>`.