Docs: fix typo in deeplinking docs

Summary:
Just a small typo in the docs, the suggested code uses a variable that doesn't exist and leads to a compile error.
Closes https://github.com/facebook/react-native/pull/15196

Differential Revision: D5490031

Pulled By: javache

fbshipit-source-id: cb1e15b22f0d8f282afb3943fb4f5d0dc5dad9e7
This commit is contained in:
Joey Baker
2017-07-26 07:11:42 -07:00
committed by Facebook Github Bot
parent f7579381cc
commit d53d121956

View File

@@ -79,7 +79,7 @@ const LinkingManager = Platform.OS === 'android' ?
* openURL:(NSURL *)url
* options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
* {
* return [RCTLinkingManager application:app openURL:url options:options];
* return [RCTLinkingManager application:application openURL:url options:options];
* }
* ```
*