aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/tutorial
diff options
context:
space:
mode:
authorGravatar Passw <Passw@users.noreply.github.com>2017-12-22 14:13:12 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2017-12-22 14:15:08 -0800
commit473a91658c5be911dc3244c7791bd14761dfe54f (patch)
tree703e24932a6b1eabdf8c30f54d7c5ad2bb83a607 /site/docs/tutorial
parent6bc35ede0ad645cff2eeee133cae3bb25b537219 (diff)
Fix wrong description library -> binary
Closes #4344. PiperOrigin-RevId: 179962459
Diffstat (limited to 'site/docs/tutorial')
-rw-r--r--site/docs/tutorial/java.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/docs/tutorial/java.md b/site/docs/tutorial/java.md
index 8b4a4825e6..4fbaefdbe7 100644
--- a/site/docs/tutorial/java.md
+++ b/site/docs/tutorial/java.md
@@ -216,7 +216,7 @@ java_library(
```
With this configuration, Bazel first builds the `greeter` library, then the
-`ProjectRunner` library. The `deps` attribute in `java_binary` tells Bazel that
+`ProjectRunner` binary. The `deps` attribute in `java_binary` tells Bazel that
the `greeter` library is required to build the `ProjectRunner` binary.
Let's build this new version of our project. Run the following command: