Skip to content

Commit

Permalink
docs: fix broken links (bazelbuild#1429)
Browse files Browse the repository at this point in the history
  • Loading branch information
tanishiking authored Sep 29, 2022
1 parent 02ea803 commit 85f85d1
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ in [./scala/scala.bzl](./scala/scala.bzl).

### Code reviews and other contributions.
**All submissions, including submissions by project members, require review.**
Please follow the instructions in [the contributors documentation](http://bazel.io/contributing.html).
Please follow the instructions in [the contributors documentation](https://bazel.build/contribute).

### The small print
Contributions made by corporations are covered by a different agreement than
Expand Down
18 changes: 9 additions & 9 deletions docs/scala_binary.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ A `scala_binary` requires a `main_class` attribute.
<p><code>List of strings; optional</code></p>
<p>
Extra compiler options for this binary to be passed to scalac. Subject to
<a href="http://bazel.io/docs/be/make-variables.html">Make variable
<a href="https://bazel.build/reference/be/make-variables">Make variable
substitution</a> and
<a href="http://bazel.io/docs/be/common-definitions.html#borne-shell-tokenization">Bourne shell tokenization.</a>
<a href="https://bazel.build/reference/be/common-definitions.html#sh-tokenization">Bourne shell tokenization.</a>
</p>
</td>
</tr>
Expand All @@ -121,9 +121,9 @@ A `scala_binary` requires a `main_class` attribute.
<p><code>List of strings; optional</code></p>
<p>
List of JVM flags to be passed to the executing JVM. Subject to
<a href="http://bazel.io/docs/be/make-variables.html">Make variable
<a href="https://bazel.build/reference/be/make-variables.html">Make variable
substitution</a> and
<a href="http://bazel.io/docs/be/common-definitions.html#borne-shell-tokenization">Bourne shell tokenization.</a>
<a href="https://bazel.build/reference/be/common-definitions.html#sh-tokenization">Bourne shell tokenization.</a>
</p>
</td>
</tr>
Expand All @@ -134,9 +134,9 @@ A `scala_binary` requires a `main_class` attribute.
<p>
List of JVM flags to be passed to scalac after the
<code>scalacopts</code>. Subject to
<a href="http://bazel.io/docs/be/make-variables.html">Make variable
<a href="https://bazel.build/reference/be/make-variables.html">Make variable
substitution</a> and
<a href="http://bazel.io/docs/be/common-definitions.html#borne-shell-tokenization">Bourne shell tokenization.</a>
<a href="https://bazel.build/reference/be/common-definitions.html#sh-tokenization">Bourne shell tokenization.</a>
</p>
</td>
</tr>
Expand All @@ -147,9 +147,9 @@ A `scala_binary` requires a `main_class` attribute.
<p>
List of JVM flags to be passed to javac after the
<code>javacopts</code>. Subject to
<a href="http://bazel.io/docs/be/make-variables.html">Make variable
<a href="https://bazel.build/reference/be/make-variables.html">Make variable
substitution</a> and
<a href="http://bazel.io/docs/be/common-definitions.html#borne-shell-tokenization">Bourne shell tokenization.</a>
<a href="https://bazel.build/reference/be/common-definitions.html#sh-tokenization">Bourne shell tokenization.</a>
</p>
</td>
</tr>
Expand All @@ -164,4 +164,4 @@ A `scala_binary` requires a `main_class` attribute.
</td>
</tr>
</tbody>
</table>
</table>
14 changes: 7 additions & 7 deletions docs/scala_library.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ In order to have a Java rule use this jar file, use the `java_import` rule.
<p><code>List of strings; optional</code></p>
<p>
Extra compiler options for this library to be passed to scalac. Subject to
<a href="http://bazel.io/docs/be/make-variables.html">Make variable
<a href="https://bazel.build/reference/be/make-variables.html">Make variable
substitution</a> and
<a href="http://bazel.io/docs/be/common-definitions.html#borne-shell-tokenization">Bourne shell tokenization.</a>
<a href="https://bazel.build/reference/be/common-definitions.html#sh-tokenization">Bourne shell tokenization.</a>
</p>
</td>
</tr>
Expand All @@ -143,9 +143,9 @@ In order to have a Java rule use this jar file, use the `java_import` rule.
<p>
List of JVM flags to be passed to scalac after the
<code>scalacopts</code>. Subject to
<a href="http://bazel.io/docs/be/make-variables.html">Make variable
<a href="https://bazel.build/reference/be/make-variables.html">Make variable
substitution</a> and
<a href="http://bazel.io/docs/be/common-definitions.html#borne-shell-tokenization">Bourne shell tokenization.</a>
<a href="https://bazel.build/reference/be/common-definitions.html#sh-tokenization">Bourne shell tokenization.</a>
</p>
</td>
</tr>
Expand All @@ -156,9 +156,9 @@ In order to have a Java rule use this jar file, use the `java_import` rule.
<p>
List of JVM flags to be passed to javac after the
<code>javacopts</code>. Subject to
<a href="http://bazel.io/docs/be/make-variables.html">Make variable
<a href="https://bazel.build/reference/be/make-variables.html">Make variable
substitution</a> and
<a href="http://bazel.io/docs/be/common-definitions.html#borne-shell-tokenization">Bourne shell tokenization.</a>
<a href="https://bazel.build/reference/be/common-definitions.html#sh-tokenization">Bourne shell tokenization.</a>
</p>
</td>
</tr>
Expand All @@ -173,4 +173,4 @@ In order to have a Java rule use this jar file, use the `java_import` rule.
</td>
</tr>
</tbody>
</table>
</table>
14 changes: 7 additions & 7 deletions docs/scala_macro_library.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ In order to have a Java rule use this jar file, use the `java_import` rule.
<p><code>List of strings; optional</code></p>
<p>
Extra compiler options for this library to be passed to scalac. Subject to
<a href="http://bazel.io/docs/be/make-variables.html">Make variable
<a href="https://bazel.build/reference/be/make-variables.html">Make variable
substitution</a> and
<a href="http://bazel.io/docs/be/common-definitions.html#borne-shell-tokenization">Bourne shell tokenization.</a>
<a href="https://bazel.build/reference/be/common-definitions.html#sh-tokenization">Bourne shell tokenization.</a>
</p>
</td>
</tr>
Expand All @@ -144,9 +144,9 @@ In order to have a Java rule use this jar file, use the `java_import` rule.
<p>
List of JVM flags to be passed to scalac after the
<code>scalacopts</code>. Subject to
<a href="http://bazel.io/docs/be/make-variables.html">Make variable
<a href="https://bazel.build/reference/be/make-variables.html">Make variable
substitution</a> and
<a href="http://bazel.io/docs/be/common-definitions.html#borne-shell-tokenization">Bourne shell tokenization.</a>
<a href="https://bazel.build/reference/be/common-definitions.html#sh-tokenization">Bourne shell tokenization.</a>
</p>
</td>
</tr>
Expand All @@ -157,9 +157,9 @@ In order to have a Java rule use this jar file, use the `java_import` rule.
<p>
List of JVM flags to be passed to javac after the
<code>javacopts</code>. Subject to
<a href="http://bazel.io/docs/be/make-variables.html">Make variable
<a href="https://bazel.build/reference/be/make-variables.html">Make variable
substitution</a> and
<a href="http://bazel.io/docs/be/common-definitions.html#borne-shell-tokenization">Bourne shell tokenization.</a>
<a href="https://bazel.build/reference/be/common-definitions.html#sh-tokenization">Bourne shell tokenization.</a>
</p>
</td>
</tr>
Expand All @@ -174,4 +174,4 @@ In order to have a Java rule use this jar file, use the `java_import` rule.
</td>
</tr>
</tbody>
</table>
</table>

0 comments on commit 85f85d1

Please sign in to comment.