Skip to content

Commit d9ba177

Browse files
Fix capitalization and formatting in iOS AppDelegate setup instructions
1 parent 11f280e commit d9ba177

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/quickstart/native/react-native/00-login.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ At runtime, the `applicationId` value will automatically update with your applic
8686
### Configure iOS
8787
#### AppDelegate Setup (Choose Based on Architecture)
8888

89-
If You're Using (Swift - `ios/<YOUR PROJECT>/AppDelegat.swift`) add the following in `AppDelegate` class:
89+
If you're using (Swift - `ios/<YOUR PROJECT>/AppDelegat.swift`) add the following in `AppDelegate` class:
9090

9191
```swift
9292
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
9393
return RCTLinkingManager.application(app, open: url, options: options)
9494
}
9595
```
96-
If You're Using (Objective-C++ - `ios/<YOUR PROJECT>/AppDelegate.mm`) add the following:
96+
If you're using (Objective-C++ - `ios/<YOUR PROJECT>/AppDelegate.mm`) add the following:
9797

9898
```objc
9999
#import <React/RCTLinkingManager.h>

0 commit comments

Comments
 (0)