Skip to content

Commit 3deb338

Browse files
committed
Code review typos
1 parent b61565c commit 3deb338

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

iterableapi/src/main/java/com/iterable/iterableapi/IterableApi.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void setNotificationIcon(String iconName) {
6464
* @return Returns the requested payload data from the current push campaign if it exists.
6565
*/
6666
public String getPayloadData(String key) {
67-
return(_payloadData != null) ? _payloadData.getString(key, null): null;
67+
return (_payloadData != null) ? _payloadData.getString(key, null): null;
6868
}
6969

7070
Context getMainActivityContext() {
@@ -98,7 +98,7 @@ void setNotificationData(IterableNotificationData data) {
9898

9999

100100

101-
//region Public Fuctions
101+
//region Public Functions
102102
//---------------------------------------------------------------------------------------
103103
/**
104104
* Returns a shared instance of IterableApi. Updates the client data if an instance already exists.
@@ -182,7 +182,7 @@ public void onNewIntent(Intent intent) {
182182
}
183183

184184
/**
185-
* Returns where or not the intent was sent from Iterable.
185+
* Returns whether or not the intent was sent from Iterable.
186186
*/
187187
public boolean isIterableIntent(Intent intent) {
188188
if (intent != null) {
@@ -386,7 +386,7 @@ protected void trackPushOpen(int campaignId, int templateId) {
386386
}
387387

388388
/**
389-
* Internal api call made from IterablePushRegistrionGCM after a registration is completed.
389+
* Internal api call made from IterablePushRegistrationGCM after a registration is completed.
390390
* @param token
391391
*/
392392
protected void disablePush(String token) {

0 commit comments

Comments
 (0)