Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 60c6302

Browse files
authored
Fix everytime spelling (#1876)
1 parent 9ab5d53 commit 60c6302

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/api-js.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ This decorator provides support for letting you customize its behaviour to easil
6060
export default MyApp;
6161
```
6262

63-
2. **Silent sync everytime the app resumes**. Same as 1, except we check for updates, or apply an update if one exists every time the app returns to the foreground after being "backgrounded".
63+
2. **Silent sync every time the app resumes**. Same as 1, except we check for updates, or apply an update if one exists every time the app returns to the foreground after being "backgrounded".
6464

6565
```javascript
66-
// Sync for updates everytime the app resumes.
66+
// Sync for updates every time the app resumes.
6767
class MyApp extends Component<{}> {}
6868
MyApp = codePush({ checkFrequency: codePush.CheckFrequency.ON_APP_RESUME, installMode: codePush.InstallMode.ON_NEXT_RESUME })(MyApp);
6969
export default MyApp;

0 commit comments

Comments
 (0)