Browse Source

[PR #1599] Fixed typo in one of the code samples in the README.

Fuad Kamal 9 years ago
parent
commit
93a106d1a4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -1362,7 +1362,7 @@ extension DataRequest {
             guard error == nil else { return .failure(BackendError.network(error: error!)) }
 
             // Use Alamofire's existing data serializer to extract the data, passing the error as nil, as it has
-            // alreaady been handled.
+            // already been handled.
             let result = Request.serializeResponseData(response: response, data: data, error: nil)
             
             guard case let .success(validData) = result else {