From 927b43d47c2cd42538265cb06154b12cb0be6816 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Barbet?= Date: Wed, 1 Jun 2022 13:25:20 -0700 Subject: [PATCH] typo for the automaticallyAdjustKeyboardInsets description (#33948) Summary: Minor typo change ## Changelog [iOS] [Fixed] - Typo in the documation for the `automaticallyAdjustKeyboardInsets` prop Pull Request resolved: https://github.com/facebook/react-native/pull/33948 Test Plan: Read the paragraph, solid. Reviewed By: kacieb Differential Revision: D36810184 Pulled By: cortinico fbshipit-source-id: af586beb4eb3fd4337d2df8612d39c6abb0a37bf --- Libraries/Components/ScrollView/ScrollView.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/Components/ScrollView/ScrollView.js b/Libraries/Components/ScrollView/ScrollView.js index 248cd1760284df..bc7c06aae7b093 100644 --- a/Libraries/Components/ScrollView/ScrollView.js +++ b/Libraries/Components/ScrollView/ScrollView.js @@ -173,8 +173,8 @@ type IOSProps = $ReadOnly<{| */ automaticallyAdjustContentInsets?: ?boolean, /** - * Controls whether the ScrollView should automatically adjust it's contentInset - * and scrollViewInsets when the Keyboard changes it's size. The default value is false. + * Controls whether the ScrollView should automatically adjust its `contentInset` + * and `scrollViewInsets` when the Keyboard changes its size. The default value is false. * @platform ios */ automaticallyAdjustKeyboardInsets?: ?boolean,