diff --git a/CountlyFeedbackWidget.h b/CountlyFeedbackWidget.h index 9bce328b..5ae8f0fe 100644 --- a/CountlyFeedbackWidget.h +++ b/CountlyFeedbackWidget.h @@ -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 diff --git a/CountlyFeedbacks.h b/CountlyFeedbacks.h index 4e774aea..4518908f 100644 --- a/CountlyFeedbacks.h +++ b/CountlyFeedbacks.h @@ -26,11 +26,11 @@ extern NSString* const kCountlyReservedEventStarRating; - (void)getFeedbackWidgets:(void (^)(NSArray *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;