@@ -41,7 +41,7 @@ public extension URLRequestConvertible {
4141 /// Creates a new `URLRequestConvertible` with query items appended to the new request.
4242 ///
4343 /// - Parameter queryItems: the query items to append to the request
44- /// - Parameter overrideExisting: if true existing items with the same name will be overridden
44+ /// - Parameter overrideExisting: if ` true existing items with the same name will be overridden
4545 /// - Returns: a new `URLRequestConvertible`
4646 func appending( queryItems: [ URLQueryItem ] , overrideExisting: Bool = true ) -> URLRequestConvertible {
4747 var request = asURLRequest ( )
@@ -55,15 +55,15 @@ public extension URLRequestConvertible {
5555 /// Creates a new `URLRequestConvertible` with query parameters appended to the new request.
5656 ///
5757 /// - Parameter queryParameters: the parameters to append to the request
58- /// - Parameter overrideExisting: if true existing items with the same name will be overridden
58+ /// - Parameter overrideExisting: if ` true existing items with the same name will be overridden
5959 /// - Returns: a new `URLRequestConvertible`
6060 func appending( queryParameters: [ String : String ] , overrideExisting: Bool = true ) -> URLRequestConvertible {
6161 return appending ( queryItems: queryParameters. asURLQueryItems ( ) )
6262 }
6363
6464 /// Creates a new `URLRequestConvertible` with all existing query items replaced with new ones.
6565 ///
66- /// - Parameter queryItems: the queryItems to add to the request
66+ /// - Parameter queryItems: the query items to add to the request
6767 /// - Returns: a new `URLRequestConvertible`
6868 func replacingAllQueryItems( with queryItems: [ URLQueryItem ] ) -> URLRequestConvertible {
6969 var request = asURLRequest ( )
0 commit comments