Преглед на файлове

[PR #1510] Fix typo in migration guide around availability checks.

Alexsander Akers преди 9 години
родител
ревизия
0e8d081efc
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Documentation/Alamofire 4.0 Migration Guide.md

+ 1 - 1
Documentation/Alamofire 4.0 Migration Guide.md

@@ -441,7 +441,7 @@ It's important to note that these APIs are only available on iOS and tvOS 10+ an
 
 ```swift
 Alamofire.request(urlString).response { response in
-    if #available(iOS 10.0. *) {
+    if #available(iOS 10.0, *) {
 		debugPrint(response.metrics)
     }
 }