From 2d9b94ada521ede5263d92a64619039cd0e0eddf Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Thu, 5 Sep 2019 04:34:23 -0700 Subject: [PATCH] Update getting-started.md (#540) Summary: Remove duplicate `client:start`. Pull Request resolved: https://github.com/facebook/flipper/pull/540 Test Plan: eyes Reviewed By: danielbuechele Differential Revision: D17203282 Pulled By: passy fbshipit-source-id: 2245c376181a0069d04c55af5f51170b793cd52a --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 8110878f0..b1bb35fbf 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -270,7 +270,7 @@ AppDelegate. [client addPlugin: [[FlipperKitLayoutPlugin alloc] initWithRootNode: application withDescriptorMapper: layoutDescriptorMapper]]; - [client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]]; [client start]; + [client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]]; [client addPlugin: [[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]]; [client start]; ...