File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public protocol RequestType {
26
26
/// from this property depending on `method`.
27
27
var parameters : AnyObject ? { get }
28
28
29
- /// The actual parameters for the URL query. The values of this property will be escaped using `URLEncodedSerializetion `.
29
+ /// The actual parameters for the URL query. The values of this property will be escaped using `URLEncodedSerialization `.
30
30
/// If this property is not implemented and `method.prefersQueryParameter` is `true`, the value of this property
31
31
/// will be computed from `parameters`.
32
32
var queryParameters : [ String : AnyObject ] ? { get }
@@ -44,7 +44,7 @@ public protocol RequestType {
44
44
var dataParser : DataParserType { get }
45
45
46
46
/// Intercepts `NSURLRequest` which is created by `RequestType.buildURLRequest()`. If an error is
47
- /// thrown in this method, the result of `Session.sendRequest()` truns `.Failure(.RequestError(error))`.
47
+ /// thrown in this method, the result of `Session.sendRequest()` turns `.Failure(.RequestError(error))`.
48
48
/// - Throws: `ErrorType`
49
49
func interceptURLRequest( URLRequest: NSMutableURLRequest ) throws -> NSMutableURLRequest
50
50
You can’t perform that action at this time.
0 commit comments