Fixing name of path param in -cancelAllHTTPOperationsWithMethod:path: documentation

This commit is contained in:
Mattt Thompson 2012-08-31 09:09:52 -07:00
parent ec0240f6e4
commit 26b5a3b533

View file

@ -304,7 +304,7 @@ typedef enum {
Cancels all operations in the HTTP client's operation queue whose URLs match the specified HTTP method and path.
@param method The HTTP method to match for the cancelled requests, such as `GET`, `POST`, `PUT`, or `DELETE`. If `nil`, all request operations with URLs matching the path will be cancelled.
@param url The path to match for the cancelled requests.
@param path The path to match for the cancelled requests.
*/
- (void)cancelAllHTTPOperationsWithMethod:(NSString *)method path:(NSString *)path;