aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/blog/_posts/2015-06-25-ErrorProne.md
diff options
context:
space:
mode:
authorGravatar John Shimek <varikin@gmail.com>2015-08-31 14:10:12 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2015-08-31 19:15:59 +0000
commitc9fa5a61b2b58db76a9709362932796607a83589 (patch)
treee95b2280f0e2214c6a653b07b418a95e20d3a467 /site/blog/_posts/2015-06-25-ErrorProne.md
parent21d262f29fe4a8cc03253cbbc59e63527e2b7c60 (diff)
Fixed typos on using error prone with Bazel.
Looks like the option is --javacopt not --javacopts and the link http://errorprone.info/docs 404s. There isn't a top level page for the docs so I altered the link to the first page which is installation. -- Reviewed-on: https://github.com/google/bazel/pull/401 MOS_MIGRATED_REVID=101931516
Diffstat (limited to 'site/blog/_posts/2015-06-25-ErrorProne.md')
-rw-r--r--site/blog/_posts/2015-06-25-ErrorProne.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/blog/_posts/2015-06-25-ErrorProne.md b/site/blog/_posts/2015-06-25-ErrorProne.md
index 42b13dd3eb..dc4803bd93 100644
--- a/site/blog/_posts/2015-06-25-ErrorProne.md
+++ b/site/blog/_posts/2015-06-25-ErrorProne.md
@@ -9,9 +9,9 @@ that will not be caught by the compiler.
We turned [Error Prone](http://errorprone.info) on by default but you can
easily turn it off by using the Javac option `--extra_checks:off`. To do so,
-simply specify `--javacopts='-extra_checks:off'` to the list of Bazel's options.
+simply specify `--javacopt='-extra_checks:off'` to the list of Bazel's options.
You can also tune the checks error-prone will perform by using the
[`-Xep:` flags](http://errorprone.info/docs/flags).
-See the [documentation of Error Prone](http://errorprone.info/docs) for more
+See the [documentation of Error Prone](http://errorprone.info/docs/installation) for more
on Error Prone.