Skip to content

Commit

Permalink
fix(ios): typo in JSValue type (#10477)
Browse files Browse the repository at this point in the history
  • Loading branch information
janvennemann authored and sgtcoolguy committed Nov 19, 2018
1 parent 4b2e861 commit 13aff1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iphone/Classes/KrollContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ KrollContext *GetKrollContext(TiContextRef context);
*/
@property (strong, nonatomic, nullable) NSArray<JSValue *> *arguments;

- (instancetype)initWithCallback:(nonnull JSValue *)callback arguments:(nullable NSArray<NSValue *> *)arguments;
- (instancetype)initWithCallback:(nonnull JSValue *)callback arguments:(nullable NSArray<JSValue *> *)arguments;

/**
* The method that will be triggered when a timer fires.
Expand Down
2 changes: 1 addition & 1 deletion iphone/Classes/KrollContext.m
Original file line number Diff line number Diff line change
Expand Up @@ -1568,7 +1568,7 @@ @interface KrollTimerManager ()

@implementation KrollTimerTarget

- (instancetype)initWithCallback:(JSValue *)callback arguments:(NSArray<NSValue *> *)arguments
- (instancetype)initWithCallback:(JSValue *)callback arguments:(NSArray<JSValue *> *)arguments
{
self = [super init];
if (!self) {
Expand Down

0 comments on commit 13aff1d

Please sign in to comment.