Skip to content

Commit

Permalink
Fix linking manager library name in documentation
Browse files Browse the repository at this point in the history
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
  • Loading branch information
vedadsose authored and facebook-github-bot committed Mar 6, 2017
1 parent 4471c32 commit f126540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/Linking/Linking.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const LinkingManager = Platform.OS === 'android' ?
* execution you'll need to add the following lines to you `*AppDelegate.m`:
*
* ```
* #import "RCTLinkingManager.h"
* #import <React/RCTLinkingManager.h>
*
* - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
* sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
Expand Down

0 comments on commit f126540

Please sign in to comment.