Skip to content

Commit 7904aa1

Browse files
committed
Typo fix: coordiante -> coordinate
1 parent 4e2b66c commit 7904aa1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Classes/Client/YLPClient+Search.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ typedef void(^YLPSearchCompletionHandler)(YLPSearch *_Nullable search, NSError *
5454
sort:(YLPSortType)sort
5555
completionHandler:(YLPSearchCompletionHandler)completionHandler;
5656

57-
- (void)searchWithGeoCoordinate:(YLPGeoCoordinate *)geoCoordiante
57+
- (void)searchWithGeoCoordinate:(YLPGeoCoordinate *)geoCoordinate
5858
completionHandler:(YLPSearchCompletionHandler)completionHandler;
5959

6060
@end

Classes/Client/YLPClient+Search.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ - (void)searchWithGeoCoordinate:(YLPGeoCoordinate *)geoCoordinate
7575
[self searchWithQuery:query completionHandler:completionHandler];
7676
}
7777

78-
- (void)searchWithGeoCoordinate:(YLPGeoCoordinate *)geoCoordiante
78+
- (void)searchWithGeoCoordinate:(YLPGeoCoordinate *)geoCoordinate
7979
completionHandler:(YLPSearchCompletionHandler)completionHandler {
80-
YLPQuery *query = [[YLPQuery alloc] initWithGeoCoordinate:geoCoordiante];
80+
YLPQuery *query = [[YLPQuery alloc] initWithGeoCoordinate:geoCoordinate];
8181
[self searchWithQuery:query completionHandler:completionHandler];
8282
}
8383

0 commit comments

Comments
 (0)