From 2083516f4531132bc36b3146dda155bd88868df7 Mon Sep 17 00:00:00 2001 From: Ethan Lillie Date: Thu, 15 Jun 2017 03:22:03 -0700 Subject: [PATCH] Correct its/it's homophone in NativeModulesIOS.md Summary: Closes https://github.com/facebook/react-native/pull/14522 Differential Revision: D5254055 Pulled By: javache fbshipit-source-id: aa764fc15baaeb349573b443ec24bbdea1255de9 --- docs/NativeModulesIOS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/NativeModulesIOS.md b/docs/NativeModulesIOS.md index d6b48e6bf..97451918b 100644 --- a/docs/NativeModulesIOS.md +++ b/docs/NativeModulesIOS.md @@ -235,7 +235,7 @@ The native module should not have any assumptions about what thread it is being } ``` -Similarly, if an operation may take a long time to complete, the native module should not block and can specify it's own queue to run operations on. For example, the `RCTAsyncLocalStorage` module creates it's own queue so the React queue isn't blocked waiting on potentially slow disk access: +Similarly, if an operation may take a long time to complete, the native module should not block and can specify it's own queue to run operations on. For example, the `RCTAsyncLocalStorage` module creates its own queue so the React queue isn't blocked waiting on potentially slow disk access: ```objectivec - (dispatch_queue_t)methodQueue