aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/bazel-overview.md
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/bazel-overview.md
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/bazel-overview.md')
-rw-r--r--site/docs/bazel-overview.md6
1 files changed, 3 insertions, 3 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)