Fix wrong description library -> binary

Closes #4344.

PiperOrigin-RevId: 179962459
diff --git a/site/docs/tutorial/java.md b/site/docs/tutorial/java.md
index 8b4a482..4fbaefd 100644
--- a/site/docs/tutorial/java.md
+++ b/site/docs/tutorial/java.md
@@ -216,7 +216,7 @@
 ```
 
 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: