From 26b5a3b533d9a4661b71054b877350d00dc69cb8 Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Fri, 31 Aug 2012 09:09:52 -0700 Subject: [PATCH] Fixing name of path param in -cancelAllHTTPOperationsWithMethod:path: documentation --- AFNetworking/AFHTTPClient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AFNetworking/AFHTTPClient.h b/AFNetworking/AFHTTPClient.h index 76a4a92..5af49b3 100644 --- a/AFNetworking/AFHTTPClient.h +++ b/AFNetworking/AFHTTPClient.h @@ -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;