Skip to content

Commit 9c05905

Browse files
committed
fix syntactic issue in example
1 parent 4945ce8 commit 9c05905

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)