Skip to content

Commit 6e353f6

Browse files
committed
Merge pull request #1 from kilink/master
Fix minor syntactic issue in example
2 parents 4945ce8 + 9c05905 commit 6e353f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You can also customize the output by supplying your own format blocks:
3131
return nil;
3232
}
3333

34-
return [NSString stringWithFormat:"%@ %@", [operation.request HTTPMethod], [[operation.request URL] absoluteString]];
34+
return [NSString stringWithFormat:@"%@ %@", [operation.request HTTPMethod], [[operation.request URL] absoluteString]];
3535
}];
3636
```
3737

0 commit comments

Comments
 (0)