diff --git a/site/docs/tutorial/ios-app.md b/site/docs/tutorial/ios-app.md index 38da4433a3c4c2..884386012da58b 100644 --- a/site/docs/tutorial/ios-app.md +++ b/site/docs/tutorial/ios-app.md @@ -154,7 +154,7 @@ Bazel provides several build rules that you can use to build an app for the iOS platform. For this tutorial, you'll first use the [`objc_library`](../be/objective-c.html#objc_library) rule to tell Bazel how to build a static library from the app source code and Xib files. Then -you'll use the [`ios_application`](https://github.com/bazelbuild/rules_apple/blob/master/doc/rules-ios.md#ios_application) +you'll use the [`ios_application`](https://github.com/bazelbuild/rules_apple) rule to tell it how to build the application binary and the `.ipa` bundle. **NOTE:** This tutorial presents a minimal use case of the Objective-C rules in @@ -180,8 +180,8 @@ Note the name of the rule, `UrlGetClasses`. ### Add an ios_application rule -The [`ios_application`](https://github.com/bazelbuild/rules_apple/blob/master/doc/rules-ios.md#ios_application) -rule builds the application binary and creates the `.ipa` bundle file. +The [`ios_application`](../be/objective-c.html#ios_application) rule builds +the application binary and creates the `.ipa` bundle file. Add the following to your `BUILD` file: