Răsfoiți Sursa

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

Alexsander Akers 9 ani în urmă
părinte
comite
0e8d081efc
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  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)
     }
 }