Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ - (void)networkConnectionViewDidTapRequestButton:(NetworkConnectionView *)connec
PerfLog(@"Start perform network request");
[self.connection
makeNetworkRequestWithSuccessCallback:^{
PerfLog(@"Network operation complited with success");
PerfLog(@"Network operation completed with success");
dispatch_async(dispatch_get_main_queue(), ^{
[weakSelf updateUIForOperationCompleted];
weakSelf.connectionView.progressViewColor = [UIColor greenColor];
Expand All @@ -155,7 +155,7 @@ - (void)networkConnectionViewDidTapRequestButton:(NetworkConnectionView *)connec
}
failureCallback:^(NSError *error) {
dispatch_async(dispatch_get_main_queue(), ^{
PerfLog(@"Network operation complited with fail: %@", error.localizedDescription);
PerfLog(@"Network operation completed with fail: %@", error.localizedDescription);
[weakSelf updateUIForOperationCompleted];
weakSelf.connectionView.progressViewColor = [UIColor redColor];
self.connectionView.connectionStatus = ConnectionStatus_Fail;
Expand Down
Loading