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
8 changes: 4 additions & 4 deletions src/core/classes/Iterable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export class Iterable {
*
* ## Registering device token:
*
* If `IterableConfig.autoPushRegisteration` is set to true, calling
* If `IterableConfig.autoPushRegistration` is set to true, calling
* `setEmail` automatically registers the device for push notifications and
* sends the deviceId and token to Iterable.
*
Expand All @@ -164,7 +164,7 @@ export class Iterable {
* ## Signing out a user from the SDK:
*
* To tell the SDK to sign out the current user, pass null into
* `Iterable.setEmail`. If IterableConfig.autoPushRegisteration is set to
* `Iterable.setEmail`. If IterableConfig.autoPushRegistration is set to
* true, calling `Iterable.setEmail`(null) prevents Iterable from sending
* further push notifications to that user, for that app, on that device. On
* the user's Iterable profile, `endpointEnabled` is set to false for the
Expand Down Expand Up @@ -222,7 +222,7 @@ export class Iterable {
*
* ## Registering device token:
*
* If `IterableConfig.autoPushRegisteration` is set to `true`, calling
* If `IterableConfig.autoPushRegistration` is set to `true`, calling
* `setUserId` automatically registers the device for push notifications and
* sends the `deviceId` and token to Iterable.
*
Expand All @@ -235,7 +235,7 @@ export class Iterable {
* ## Signing out a user from the SDK:
*
* To tell the SDK to sign out the current user, pass null into
* `Iterable.setUserId`. If `IterableConfig.autoPushRegisteration` is set to
* `Iterable.setUserId`. If `IterableConfig.autoPushRegistration` is set to
* true, calling `Iterable.setUserId(null)` prevents Iterable from sending
* further push notifications to that user, for that app, on that device. On
* the user's Iterable profile, endpointEnabled is set to false for the
Expand Down