diff options
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | site/docs/bazel-overview.md | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -29,7 +29,8 @@ Build and test software of any size, quickly and reliably. - [Build C++](https://docs.bazel.build/tutorial/cpp.html) - [Build Java](https://docs.bazel.build/tutorial/java.html) - - [Android and iOS](https://docs.bazel.build/tutorial/app.html) + - [Android](https://docs.bazel.build/tutorial/android-app.html) + - [iOS](https://docs.bazel.build/tutorial/ios-app.html) ## Documentation diff --git a/site/docs/bazel-overview.md b/site/docs/bazel-overview.md index 2d4f63af71..dfd2f2b453 100644 --- a/site/docs/bazel-overview.md +++ b/site/docs/bazel-overview.md @@ -57,7 +57,7 @@ To build or test a project with Bazel, you typically do the following: 1. **Set up Bazel.** Download and [install Bazel](https://docs.bazel.build/versions/master/install.html). -2. **Set up a project [workspace](https://docs.bazel.build/versions/master/tutorial/workspace.html)**, +2. **Set up a project [workspace](https://docs.bazel.build/versions/master/build-ref.html#workspaces)**, which is a directory where Bazel looks for build inputs and `BUILD` files, and where it stores build outputs. |