Skip to content

Commit fa25ddb

Browse files
committed
Merge pull request #178 from jyounus/master
Fixed some typos
2 parents d0efd7e + 240af15 commit fa25ddb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/RequestType.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public protocol RequestType {
2626
/// from this property depending on `method`.
2727
var parameters: AnyObject? { get }
2828

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`.
3030
/// If this property is not implemented and `method.prefersQueryParameter` is `true`, the value of this property
3131
/// will be computed from `parameters`.
3232
var queryParameters: [String: AnyObject]? { get }
@@ -44,7 +44,7 @@ public protocol RequestType {
4444
var dataParser: DataParserType { get }
4545

4646
/// 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))`.
4848
/// - Throws: `ErrorType`
4949
func interceptURLRequest(URLRequest: NSMutableURLRequest) throws -> NSMutableURLRequest
5050

0 commit comments

Comments
 (0)