From 97256318fa280646617b819d2758e148632734fe Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Thu, 28 Jan 2021 06:07:36 -0800 Subject: [PATCH] Fix syntax error in docs Summary: See https://github.com/facebook/flipper/issues/1865 Reviewed By: passy Differential Revision: D26125202 fbshipit-source-id: 3b9c7f73201173602037822297bec56816c83407 --- docs/getting-started/react-native-ios.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/react-native-ios.mdx b/docs/getting-started/react-native-ios.mdx index 2d02e7bd4..8e2f74d42 100644 --- a/docs/getting-started/react-native-ios.mdx +++ b/docs/getting-started/react-native-ios.mdx @@ -32,7 +32,7 @@ target 'your-app-name' do # # Note that if you have use_frameworks! enabled, Flipper will not work and # you should disable these next few lines. - use_flipper!('Flipper' => '0.58.0') # should match the version of your Flipper client app + use_flipper!({'Flipper' => '0.58.0'}) # should match the version of your Flipper client app post_install do |installer| flipper_post_install(installer) end