Skip to content

Commit

Permalink
Correct its/it's homophone in NativeModulesIOS.md
Browse files Browse the repository at this point in the history
Summary: Closes facebook#14522

Differential Revision: D5254055

Pulled By: javache

fbshipit-source-id: aa764fc15baaeb349573b443ec24bbdea1255de9
  • Loading branch information
elillie authored and facebook-github-bot committed Jun 15, 2017
1 parent e48ad96 commit 2083516
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/NativeModulesIOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2083516

Please sign in to comment.