aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/blog
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/blog
parent06212ef273696686e1e5a71baa3cb43d9154101d (diff)
Replace --aspect with --aspects.
Fixes #1375. -- MOS_MIGRATED_REVID=124706979
Diffstat (limited to 'site/blog')
-rw-r--r--site/blog/_posts/2016-06-10-ide-support.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/blog/_posts/2016-06-10-ide-support.md b/site/blog/_posts/2016-06-10-ide-support.md
index b652a3557e..dbe8e729b4 100644
--- a/site/blog/_posts/2016-06-10-ide-support.md
+++ b/site/blog/_posts/2016-06-10-ide-support.md
@@ -64,7 +64,7 @@ in certain packages, etc). E4b plugin then invokes bazel as follows:
```
bazel build //java/com/company/example:main \
---aspect e4b_aspect.bzl%e4b_aspect \
+--aspects e4b_aspect.bzl%e4b_aspect \
--output_groups ide-info
```
@@ -72,7 +72,7 @@ bazel build //java/com/company/example:main \
[e4b source](https://github.com/bazelbuild/e4b/blob/master/com.google.devtools.bazel.e4b/src/com/google/devtools/bazel/e4b/command/BazelCommand.java) for complete
invocation)
-The "--aspect" flag directs Bazel to apply e4b_aspect, exported from
+The "--aspects" flag directs Bazel to apply e4b_aspect, exported from
e4bazel.bzl Skylark extension, to target //java/com/company/example:main.
The aspect is then applied transitively to the dependencies of the specified