Fix typos on react-native setup page (#612)
Summary: Typo in `Podfile` comment Unnecessary `\` in iOS Setup code ## Changelog Fixed typos in react-native set up page. Pull Request resolved: https://github.com/facebook/flipper/pull/612 Test Plan: Just Documentation Differential Revision: D18223575 Pulled By: passy fbshipit-source-id: 12c35b4570287d6899769eb0283fb8149fedbeac
This commit is contained in:
committed by
Facebook Github Bot
parent
e73381a85c
commit
0cd89ba1c4
@@ -555,7 +555,7 @@ target 'your-app-name' do
|
|||||||
end
|
end
|
||||||
|
|
||||||
# For enabling Flipper.
|
# For enabling Flipper.
|
||||||
# Note that if you use_framework!, flipper will no work.
|
# Note that if you use_framework!, flipper will not work.
|
||||||
# Disable these lines if you are doing use_framework!
|
# Disable these lines if you are doing use_framework!
|
||||||
flipper_pods()
|
flipper_pods()
|
||||||
post_install do |installer|
|
post_install do |installer|
|
||||||
@@ -611,7 +611,7 @@ The code below enables the following integrations:
|
|||||||
- (void) initializeFlipper:(UIApplication *)application {
|
- (void) initializeFlipper:(UIApplication *)application {
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
FlipperClient *client = [FlipperClient sharedClient];
|
FlipperClient *client = [FlipperClient sharedClient];
|
||||||
SKDescriptorMapper \*layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];
|
SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];
|
||||||
[client addPlugin: [[FlipperKitLayoutPlugin alloc] initWithRootNode: application withDescriptorMapper: layoutDescriptorMapper]];
|
[client addPlugin: [[FlipperKitLayoutPlugin alloc] initWithRootNode: application withDescriptorMapper: layoutDescriptorMapper]];
|
||||||
[client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]]; [client start];
|
[client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]]; [client start];
|
||||||
[client addPlugin: [[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]];
|
[client addPlugin: [[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]];
|
||||||
|
|||||||
Reference in New Issue
Block a user