Skip to content

Commit 4bd2501

Browse files
committed
Fix typo
1 parent 2e2dcbe commit 4bd2501

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ios/RNSentry.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,11 +211,11 @@ - (void)setReleaseVersionDist:(SentryEvent *)event {
211211

212212
- (void)swizzleCallNativeModule:(Class)class {
213213
static const void *key = &key;
214-
SEL selctor = @selector(callNativeModule:method:params:);
215-
uintptr_t callNativeModuleAddress = [class instanceMethodForSelector:selctor];
214+
SEL selector = @selector(callNativeModule:method:params:);
215+
uintptr_t callNativeModuleAddress = [class instanceMethodForSelector:selector];
216216

217217
SentrySwizzleInstanceMethod(class,
218-
selctor,
218+
selector,
219219
SentrySWReturnType(id),
220220
SentrySWArguments(NSUInteger moduleID, NSUInteger methodID, NSArray *params),
221221
SentrySWReplacement({

0 commit comments

Comments
 (0)