diff options
author | Thiago Marcos P. Santos <thiago@mapbox.com> | 2016-08-24 18:04:22 +0300 |
---|---|---|
committer | Thiago Marcos P. Santos <thiago@mapbox.com> | 2016-08-24 18:17:56 +0300 |
commit | 7a84a0e4eaafb9ac3b7179aef613ad1627fe214c (patch) | |
tree | 3d975588cb6ba5b383f1ed8efd2ed4fdc5d416a1 /platform/ios/uitest | |
parent | 4bad0867ce2326a6ab058bd4e64f1b300aca803d (diff) | |
download | qtlocation-mapboxgl-7a84a0e4eaafb9ac3b7179aef613ad1627fe214c.tar.gz |
[ios] Fix typo
s/Reponse/Response
Diffstat (limited to 'platform/ios/uitest')
3 files changed, 6 insertions, 6 deletions
diff --git a/platform/ios/uitest/OHHTTPStubs/OHHTTPStubs/Sources/HTTPMessage/OHHTTPStubsResponse+HTTPMessage.h b/platform/ios/uitest/OHHTTPStubs/OHHTTPStubs/Sources/HTTPMessage/OHHTTPStubsResponse+HTTPMessage.h index 2776a4f3b7..b8419f1479 100644 --- a/platform/ios/uitest/OHHTTPStubs/OHHTTPStubs/Sources/HTTPMessage/OHHTTPStubsResponse+HTTPMessage.h +++ b/platform/ios/uitest/OHHTTPStubs/OHHTTPStubs/Sources/HTTPMessage/OHHTTPStubsResponse+HTTPMessage.h @@ -46,7 +46,7 @@ NS_ASSUME_NONNULL_BEGIN /** * Builds a response given a message data as returned by `curl -is [url]`, that is containing both the headers and the body. * - * This method will split the headers and the body and build a OHHTTPStubsReponse accordingly + * This method will split the headers and the body and build a OHHTTPStubsResponse accordingly * * @param responseData The NSData containing the whole HTTP response, including the headers and the body * @@ -58,7 +58,7 @@ NS_ASSUME_NONNULL_BEGIN * Builds a response given the name of a `"*.response"` file containing both the headers and the body. * * The response file is expected to be in the specified bundle (or the application bundle if nil). - * This method will split the headers and the body and build a OHHTTPStubsReponse accordingly + * This method will split the headers and the body and build a OHHTTPStubsResponse accordingly * * @param responseName The name of the `"*.response"` file (without extension) containing the whole * HTTP response (including the headers and the body) diff --git a/platform/ios/uitest/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse+HTTPMessage.h b/platform/ios/uitest/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse+HTTPMessage.h index 0ac0f6e124..313b21a80d 100644 --- a/platform/ios/uitest/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse+HTTPMessage.h +++ b/platform/ios/uitest/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse+HTTPMessage.h @@ -29,7 +29,7 @@ /** * Builds a response given a message data as returned by `curl -is [url]`, that is containing both the headers and the body. * - * This method will split the headers and the body and build a OHHTTPStubsReponse accordingly + * This method will split the headers and the body and build a OHHTTPStubsResponse accordingly * * @param responseData The NSData containing the whole HTTP response, including the headers and the body * @@ -41,7 +41,7 @@ * Builds a response given the name of a `"*.response"` file containing both the headers and the body. * * The response file is expected to be in the specified bundle (or the application bundle if nil). - * This method will split the headers and the body and build a OHHTTPStubsReponse accordingly + * This method will split the headers and the body and build a OHHTTPStubsResponse accordingly * * @param responseName The name of the `"*.response"` file (without extension) containing the whole * HTTP response (including the headers and the body) diff --git a/platform/ios/uitest/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.h b/platform/ios/uitest/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.h index 27f487f9fa..98dca2ff1b 100644 --- a/platform/ios/uitest/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.h +++ b/platform/ios/uitest/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.h @@ -160,7 +160,7 @@ NS_ASSUME_NONNULL_BEGIN * Set the `responseTime` of the `OHHTTPStubsResponse` and return `self`. Useful for chaining method calls. * * _Usage example:_ - * <pre>return [[OHHTTPStubsReponse responseWithData:data statusCode:200 headers:nil] responseTime:5.0];</pre> + * <pre>return [[OHHTTPStubsResponse responseWithData:data statusCode:200 headers:nil] responseTime:5.0];</pre> * * @param responseTime If positive, the amount of time used to send the entire response. * If negative, the rate in KB/s at which to send the response data. @@ -177,7 +177,7 @@ NS_ASSUME_NONNULL_BEGIN * Useful for chaining method calls. * * _Usage example:_ - * <pre>return [[OHHTTPStubsReponse responseWithData:data statusCode:200 headers:nil] + * <pre>return [[OHHTTPStubsResponse responseWithData:data statusCode:200 headers:nil] * requestTime:1.0 responseTime:5.0];</pre> * * @param requestTime The time to wait before the response begins to send. This value must be greater than or equal to zero. |