Skip to content

Commit f126540

Browse files
vedadsosefacebook-github-bot
authored andcommitted
Fix linking manager library name in documentation
Summary: I had an issue while using ```#import "RCTLinkingManager.h"``` ![image](https://cloud.githubusercontent.com/assets/1089932/22933908/523cf910-f2cd-11e6-9c20-b3c298d5b7cc.png) But when replaced with ```#import <React/RCTLinkingManager.h>``` the build succeeds. Looks fine on the website: ![image](https://cloud.githubusercontent.com/assets/1089932/22934563/b1ff337a-f2cf-11e6-9109-b133aef1d69c.png) Closes #12383 Differential Revision: D4658153 Pulled By: ericvicenti fbshipit-source-id: e48368c08cb27bf68ea2f1294129669896350f34
1 parent 4471c32 commit f126540

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Libraries/Linking/Linking.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const LinkingManager = Platform.OS === 'android' ?
6161
* execution you'll need to add the following lines to you `*AppDelegate.m`:
6262
*
6363
* ```
64-
* #import "RCTLinkingManager.h"
64+
* #import <React/RCTLinkingManager.h>
6565
*
6666
* - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
6767
* sourceApplication:(NSString *)sourceApplication annotation:(id)annotation

0 commit comments

Comments
 (0)