Skip to content

Commit

Permalink
Linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SpertsyanKM committed Sep 15, 2023
1 parent f7926b2 commit 3a6f34f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ typedef NS_ENUM(NSInteger, QONRateLimitedRequestType) {

@interface QONRateLimiter : NSObject

- (instancetype)initWithMaxRequestsPerSecond:(int)maxRequestsPerSecond;
- (instancetype _Nullable)initWithMaxRequestsPerSecond:(int)maxRequestsPerSecond;

- (void)processWithRateLimit:(QONRateLimitedRequestType)requestType
hash:(NSUInteger)hash
completion:(QONRateLimiterCompletionHandler)completion;
completion:(QONRateLimiterCompletionHandler _Nonnull)completion;

- (void)saveRequest:(QONRateLimitedRequestType)requestType hash:(NSUInteger)hash;

Expand Down

0 comments on commit 3a6f34f

Please sign in to comment.