Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ijunaid committed Oct 22, 2024
1 parent 2c07598 commit 510e4a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CountlyFeedbackWidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ extern NSString* const kCountlyReservedEventRating;
/**
* Modally presents the feedback widget above the top visible view controller and executes given blocks.
* @discussion Calls to this method will be ignored if consent for @c CLYConsentFeedback is not given while @c requiresConsent flag is set on initial configuration.
* @param wigetCallback Block to be executed when widget is displayed/dismissed
* @param widgetCallback Block to be executed when widget is displayed/dismissed
*/
- (void)presentWithCallback:(WidgetCallback) wigetCallback;
- (void)presentWithCallback:(WidgetCallback) widgetCallback;
/**
* Fetches feedback widget's data to be used for manually presenting it.
* @discussion When feedback widget's data is fetched successfully, @c completionHandler will be executed with an @c NSDictionary
Expand Down
6 changes: 3 additions & 3 deletions CountlyFeedbacks.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ extern NSString* const kCountlyReservedEventStarRating;

- (void)getFeedbackWidgets:(void (^)(NSArray <CountlyFeedbackWidget *> *feedbackWidgets, NSError *error))completionHandler;

- (void) presentNPS:(NSString *)nameIDorTag widgetCallback:(WidgetCallback) wigetCallback;
- (void) presentNPS:(NSString *)nameIDorTag widgetCallback:(WidgetCallback) widgetCallback;

- (void) presentSurvey:(NSString *)nameIDorTag widgetCallback:(WidgetCallback) wigetCallback;
- (void) presentSurvey:(NSString *)nameIDorTag widgetCallback:(WidgetCallback) widgetCallback;

- (void) presentRating:(NSString *)nameIDorTag widgetCallback:(WidgetCallback) wigetCallback;
- (void) presentRating:(NSString *)nameIDorTag widgetCallback:(WidgetCallback) widgetCallback;

@property (nonatomic) NSString* message;
@property (nonatomic) NSString* dismissButtonTitle;
Expand Down

0 comments on commit 510e4a7

Please sign in to comment.