瀏覽代碼

[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)
     }
 }