Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Mar 1, 2024
1 parent 8b1f785 commit 10dc61a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ export default config;
notifyAppReady() => Promise<{ bundle: BundleInfo; }>
```

Notify Capacitor Updater that the current bundle is working (a rollback will occur of this method is not called on every app launch)
Notify Capacitor Updater that the current bundle is working (a rollback will occur if this method is not called on every app launch)
By default this method should be called in the first 10 sec after app launch, otherwise a rollback will occur.
Change this behaviour with {@link appReadyTimeout}

Expand Down
2 changes: 1 addition & 1 deletion api.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default config;
notifyAppReady() => Promise<{ bundle: BundleInfo; }>
```

Notify Capacitor Updater that the current bundle is working (a rollback will occur of this method is not called on every app launch)
Notify Capacitor Updater that the current bundle is working (a rollback will occur if this method is not called on every app launch)
By default this method should be called in the first 10 sec after app launch, otherwise a rollback will occur.
Change this behaviour with {@link appReadyTimeout}

Expand Down
2 changes: 1 addition & 1 deletion src/definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ export type AppReadyListener = (state: AppReadyEvent) => void;

export interface CapacitorUpdaterPlugin {
/**
* Notify Capacitor Updater that the current bundle is working (a rollback will occur of this method is not called on every app launch)
* Notify Capacitor Updater that the current bundle is working (a rollback will occur if this method is not called on every app launch)
* By default this method should be called in the first 10 sec after app launch, otherwise a rollback will occur.
* Change this behaviour with {@link appReadyTimeout}
*
Expand Down

0 comments on commit 10dc61a

Please sign in to comment.