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
diff --git a/site/docs/bazel-overview.md b/site/docs/bazel-overview.md
index 207ddc7..6755f85 100644
--- a/site/docs/bazel-overview.md
+++ b/site/docs/bazel-overview.md
@@ -99,15 +99,15 @@
 
 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)