aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs
diff options
context:
space:
mode:
authorGravatar Jingwen Chen <jin@crypt.sg>2018-03-05 09:30:14 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-03-05 09:31:38 -0800
commit7633ab05f14ab93589a62e64ff7d5c3641c4ed14 (patch)
treeab9cffbf6b7e4c99456a0b5fbe50a9d101dee5b6 /site/docs
parent2afed516f4d5d46ba1664dc0eeb8121f60e8088f (diff)
Fixed broken links to user manual in docs
The user manual filename has been renamed from `bazel-user-manual.html` to `user-manual.html`. Closes #4662. PiperOrigin-RevId: 187877241
Diffstat (limited to 'site/docs')
-rw-r--r--site/docs/bazel-overview.md6
-rw-r--r--site/docs/best-practices.md2
-rw-r--r--site/docs/tutorial/android-app.md6
3 files changed, 7 insertions, 7 deletions
diff --git a/site/docs/bazel-overview.md b/site/docs/bazel-overview.md
index 207ddc72ff..6755f8581d 100644
--- a/site/docs/bazel-overview.md
+++ b/site/docs/bazel-overview.md
@@ -99,15 +99,15 @@ When running a build or a test, Bazel does the following:
Since all previous build work is cached, Bazel can identify and reuse cached
artifacts and only rebuild or retest what's changed. To further enforce
-correctness, you can set up Bazel to run builds and tests [hermetically](https://docs.bazel.build/versions/master/bazel-user-manual.html#sandboxing)
-through sandboxing, minimizing skew and maximizing [reproducibility](https://docs.bazel.build/versions/master/bazel-user-manual.html#correctness).
+correctness, you can set up Bazel to run builds and tests [hermetically](https://docs.bazel.build/versions/master/user-manual.html#sandboxing)
+through sandboxing, minimizing skew and maximizing [reproducibility](https://docs.bazel.build/versions/master/user-manual.html#correctness).
## What is the action graph?
The action graph represents the build artifacts, the relationships between them,
and the build actions that Bazel will perform. Thanks to this graph, Bazel can
-[track](https://docs.bazel.build/versions/master/bazel-user-manual.html#build-consistency-and-incremental-builds)
+[track](https://docs.bazel.build/versions/master/user-manual.html#build-consistency-and-incremental-builds)
changes to file content as well as changes to actions, such as build or test
commands, and know what build work has previously been done. The graph also
enables you to easily [trace dependencies](https://docs.bazel.build/versions/master/query-how-to.html)
diff --git a/site/docs/best-practices.md b/site/docs/best-practices.md
index 04a9ee776b..b53a8d6b46 100644
--- a/site/docs/best-practices.md
+++ b/site/docs/best-practices.md
@@ -87,7 +87,7 @@ misleading alias to point both targets to one guava library, then the BUILD file
## `.bazelrc`
For project-specific options, use the configuration file `_your-workspace_/tools/bazel.rc` (see
-[bazelrc format](https://docs.bazel.build/bazel-user-manual.html#bazelrc)).
+[bazelrc format](https://docs.bazel.build/user-manual.html#bazelrc)).
For options that you **do not** want to check into source control, create the configuration file
`_your-workspace_/.bazelrc` and add `.bazelrc` to your `.gitignore`. Note that this file has a
diff --git a/site/docs/tutorial/android-app.md b/site/docs/tutorial/android-app.md
index f01662847f..20db3e2ac8 100644
--- a/site/docs/tutorial/android-app.md
+++ b/site/docs/tutorial/android-app.md
@@ -315,7 +315,7 @@ Now, enter the following to build the sample app:
bazel build //android:android
```
-The [`build`](../bazel-user-manual.html#build) subcommand instructs Bazel to
+The [`build`](../user-manual.html#build) subcommand instructs Bazel to
build the target that follows. The target is specified as the name of a build
rule inside a `BUILD` file, with along with the package path relative to
your workspace directory. Note that you can sometimes omit the package path
@@ -367,7 +367,7 @@ how to build the backend server.
You can now deploy the app to a connected Android device or emulator from the
command line using the
-[`bazel mobile-install`](../bazel-user-manual.html#mobile-install)
+[`bazel mobile-install`](../user-manual.html#mobile-install)
command. This command uses the Android Debug Bridge (`adb`) to communicate with
the device. You must set up your device to use `adb` following the instructions
in
@@ -383,7 +383,7 @@ bazel mobile-install //android:android
```
Note that the `mobile-install` subcommand also supports the
-[`--incremental`](../bazel-user-manual.html#mobile-install)
+[`--incremental`](../user-manual.html#mobile-install)
flag that can be used to deploy only those parts of the app that have changed
since the last deployment.