From 20398033af0929c9c78fbabd99499014de511737 Mon Sep 17 00:00:00 2001 From: Josh Justice Date: Fri, 15 Dec 2017 14:48:58 -0500 Subject: [PATCH] Fix formatting of code block in installation-ios This code block appears fine on GitHub, but is malformatted on the site. This commit updates it to fit the format of other code blocks in the docs, so it should appear okay. --- docs/installation-ios.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/installation-ios.md b/docs/installation-ios.md index 3b7c9fc7526..9067473520d 100644 --- a/docs/installation-ios.md +++ b/docs/installation-ios.md @@ -14,9 +14,10 @@ 4. In Xcode, in Project Navigator (left pane), click on your project (top), then click on your *project* row (on the "project and targets list") and select the `Build Settings` tab (right pane). In the `Header Search Paths` section add `$(SRCROOT)/../node_modules/react-native-navigation/ios`. Make sure on the right to mark this new path `recursive` ([screenshots](https://facebook.github.io/react-native/docs/linking-libraries-ios.html#step-3)) -5. In Xcode, you will need to edit this file: `AppDelegate.m`. -This function: -```````` -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { ... } -```````` -is the main entry point for your app. Its content must be replaced with the content of this [reference](https://github.com/wix/react-native-navigation/blob/master/example/ios/example/AppDelegate.m) +5. In Xcode, you will need to edit this file: `AppDelegate.m`. This function is the main entry point for your app: + + ```objc + - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { ... } + ``` + +Its content must be replaced with the content of this [reference](https://github.com/wix/react-native-navigation/blob/master/example/ios/example/AppDelegate.m)