Skip to content

Commit 2147cba

Browse files
Cleaned up code comments for the event dispatcher.
1 parent dc28c05 commit 2147cba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher/OPTLYEventDispatcher.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
/*
2424
* This class handles the dispatching of the two Optimizely events:
25-
* - Conversion Event
2625
* - Impression Event
26+
* - Conversion Event
2727
* The events are dispatched immediately and are only saved if the dispatch fails.
2828
* The saved events will be dispatched again opportunistically in the following cases:
2929
* - Another event dispatch is called
@@ -41,9 +41,9 @@ typedef void (^OPTLYEventDispatcherResponse)(NSData * _Nullable data, NSURLRespo
4141

4242
@interface OPTLYEventDispatcher : NSObject <OPTLYEventDispatcher>
4343

44-
/// The interval at which the SDK will attempt to dispatch any events remaining in our events queue
44+
/// The interval at which the SDK will attempt to dispatch any events remaining in our events queue (in ms)
4545
@property (nonatomic, assign, readonly) NSInteger eventHandlerDispatchInterval;
46-
/// The time for which the SDK will attempt to continue re-trying an event dispatch (ms)
46+
/// The time for which the SDK will attempt to continue re-trying an event dispatch (in ms)
4747
@property (nonatomic, assign, readonly) NSInteger eventHandlerDispatchTimeout;
4848

4949
/// Logger provided by the user

0 commit comments

Comments
 (0)