Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/the-new-architecture/native-modules-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Instead, on iOS, there are two additional protocols: [`RCTInitializing`](https:/

If your module needs to run some initialization code, then you can conform to the `RCTInitializing` protocol and implement the `initialize` method. To do so, you have to:

1. Moduify the `NativeModule.h` file by adding the following lines:
1. Modify the `NativeModule.h` file by adding the following lines:

```diff title="NativeModule.h"
+ #import <React/RCTInitializing.h>
Expand Down