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
This commit is contained in:
parent
e48ad9609c
commit
2083516f45
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue