aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2015-09-17 15:10:42 +0000
committerGravatar David Chen <dzc@google.com>2015-09-17 19:35:57 +0000
commit4f9a96629be5310d8b6983f8abc98da94abf9394 (patch)
tree73a9ff2f825fdb61a3e3f507b1951498de9514e1 /src
parenta88e65b52c38b23ff20966adb76e13f97c5770f5 (diff)
Fix Build Encyclopedia links for java_import.
-- MOS_MIGRATED_REVID=103291087
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/google/devtools/build/lib/bazel/rules/java/BazelJavaImportRule.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/bazel/rules/java/BazelJavaImportRule.java b/src/main/java/com/google/devtools/build/lib/bazel/rules/java/BazelJavaImportRule.java
index 4c716b4263..65eb595548 100644
--- a/src/main/java/com/google/devtools/build/lib/bazel/rules/java/BazelJavaImportRule.java
+++ b/src/main/java/com/google/devtools/build/lib/bazel/rules/java/BazelJavaImportRule.java
@@ -43,7 +43,7 @@ public final class BazelJavaImportRule implements RuleDefinition {
/* <!-- #BLAZE_RULE(java_import).ATTRIBUTE(deps) -->
The list of other libraries to be linked in to the target.
${SYNOPSIS}
- See <a href="#$java_rule.deps">java_library.deps</a>.
+ See <a href="#java_library.deps">java_library.deps</a>.
<!-- #END_BLAZE_RULE.ATTRIBUTE --> */
.add(attr("deps", LABEL_LIST)
.allowedRuleClasses(ALLOWED_DEPS)
@@ -61,7 +61,7 @@ public final class BazelJavaImportRule implements RuleDefinition {
/* <!-- #BLAZE_RULE(java_import).ATTRIBUTE(runtime_deps) -->
Libraries to make available to the final binary or test at runtime only.
${SYNOPSIS}
- See <a href="#$java_rule.runtime_deps">java_library.runtime_deps</a>.
+ See <a href="#java_library.runtime_deps">java_library.runtime_deps</a>.
<!-- #END_BLAZE_RULE.ATTRIBUTE --> */
.add(attr("runtime_deps", LABEL_LIST)
.allowedFileTypes(JavaSemantics.JAR)