@@ -360,7 +360,7 @@ import UIKit
360360 /**
361361 Tracks a custom event.
362362
363- - remark: Pass in the the custom event data.
363+ - remark: Pass in the custom event data.
364364
365365 - parameter eventName: Name of the event
366366 */
@@ -372,7 +372,7 @@ import UIKit
372372 /**
373373 Tracks a custom event.
374374
375- - remark: Pass in the the custom event data.
375+ - remark: Pass in the custom event data.
376376
377377 - parameter eventName: Name of the event
378378 - parameter dataFields: A `Dictionary` containing any additional information to save along with the event
@@ -385,7 +385,7 @@ import UIKit
385385 /**
386386 Tracks a custom event.
387387
388- - remark: Pass in the the custom event data.
388+ - remark: Pass in the custom event data.
389389 - parameters:
390390 - eventName: Name of the event
391391 - dataFields: A `Dictionary` containing any additional information to save along with the event
@@ -431,7 +431,7 @@ import UIKit
431431 // MARK: In-App Notifications
432432
433433 /**
434- Tracks an InAppOpen event.
434+ Tracks an ` InAppOpen` event.
435435 - parameter messageId: The messageId of the notification
436436 */
437437
@@ -443,7 +443,7 @@ import UIKit
443443 }
444444
445445 /**
446- Tracks an InAppOpen event.
446+ Tracks an ` InAppOpen` event.
447447 Usually you don't need to call this method explicitly. IterableSDK will call this automatically.
448448 Call this method only if you are using a custom view controller to render IterableInAppMessages.
449449
@@ -456,7 +456,7 @@ import UIKit
456456 }
457457
458458 /**
459- Tracks an InAppClick event
459+ Tracks an ` InAppClick` event
460460
461461 - parameter messageId: The messageId of the notification
462462 - parameter buttonURL: The url of the button that was clicked
@@ -470,7 +470,7 @@ import UIKit
470470 }
471471
472472 /**
473- Tracks an InAppClick event.
473+ Tracks an ` InAppClick` event.
474474 Usually you don't need to call this method explicitly. IterableSDK will call this automatically.
475475 Call this method only if you are using a custom view controller to render IterableInAppMessages.
476476
@@ -484,7 +484,7 @@ import UIKit
484484 }
485485
486486 /**
487- Tracks an InAppClose event
487+ Tracks an ` InAppClose` event
488488 - parameter message: The in-app message
489489 - parameter clickedUrl: The url that was clicked to close the in-app. It will be `nil` when message is closed on clicking `back`.
490490 */
@@ -494,7 +494,7 @@ import UIKit
494494 }
495495
496496 /**
497- Tracks an InAppClose event
497+ Tracks an ` InAppClose` event
498498 - parameter message: The in-app message
499499 - parameter location: The location from where this message was shown. `inbox` or `inApp`.
500500 - parameter clickedUrl: The url that was clicked to close the in-app. It will be `nil` when message is closed on clicking `back`.
@@ -505,7 +505,7 @@ import UIKit
505505 }
506506
507507 /**
508- Tracks an InAppClose event
508+ Tracks an ` InAppClose` event
509509 - parameter message: The in-app message
510510 - parameter location: The location from where this message was shown. `inbox` or `inApp`.
511511 - parameter source: Source is `back` if back button was clicked to dismiss in-app message. Otherwise source is `link`.
@@ -517,7 +517,7 @@ import UIKit
517517 }
518518
519519 /**
520- Consumes the notification and removes it from the list of inAppMessages
520+ Consumes the notification and removes it from the list of in-app messages
521521
522522 - parameter messageId: The messageId of the notification
523523 */
@@ -530,7 +530,7 @@ import UIKit
530530 }
531531
532532 /**
533- Consumes the notification and removes it from the list of inAppMessages
533+ Consumes the notification and removes it from the list of in-app messages
534534
535535 - parameter message: The Iterable message that is being consumed
536536 - parameter location: The location from where this message was shown. `inbox` or `inApp`.
@@ -541,7 +541,7 @@ import UIKit
541541 }
542542
543543 /**
544- Consumes the notification and removes it from the list of inAppMessages
544+ Consumes the notification and removes it from the list of in-app messages
545545
546546 - parameter message: The Iterable message that is being consumed
547547 - parameter location: The location from where this message was shown. `inbox` or `inApp`.
@@ -618,17 +618,17 @@ import UIKit
618618 return internalImplementation? . handleUniversalLink ( url) ?? false
619619 }
620620
621- /// Use this property for getting and showing inApp Messages .
621+ /// Use this property for getting and showing in-app messages .
622622 /// This property has no meaning if IterableAPI has not been initialized using
623623 /// IterableAPI.initialize
624624 /// ```
625625 /// - IterableAPI.inAppManager.getMessages()
626- /// - IterableAPI.inappManager .show(message: message, consume: true)
626+ /// - IterableAPI.inAppManager .show(message: message, consume: true)
627627 /// ```
628628 public static var inAppManager : IterableInAppManagerProtocol {
629629 guard let internalImplementation = internalImplementation else {
630- ITBError ( " IterableAPI is not initialized yet. InApp will not work now. " )
631- assertionFailure ( " IterableAPI is not initialized yet. In-app will not work now. " )
630+ ITBError ( " IterableAPI is not initialized yet. In-apps will not work now. " )
631+ assertionFailure ( " IterableAPI is not initialized yet. In-apps will not work now. " )
632632 return EmptyInAppManager ( )
633633 }
634634
0 commit comments