瀏覽代碼

Whitespace

Mattt Thompson 11 年之前
父節點
當前提交
4c215620b4
共有 1 個文件被更改,包括 6 次插入6 次删除
  1. 6 6
      README.md

+ 6 - 6
README.md

@@ -203,12 +203,12 @@ Alamofire.upload(.POST, "http://httpbin.org/post", file: fileURL)
 
 ```swift
 Alamofire.upload(.POST, "http://httpbin.org/post", file: fileURL)
-        .progress { (bytesWritten, totalBytesWritten, totalBytesExpectedToWrite) in
-            println(totalBytesWritten)
-        }
-        .responseJSON { (request, response, JSON, error) in
-            println(JSON)
-        }
+         .progress { (bytesWritten, totalBytesWritten, totalBytesExpectedToWrite) in
+             println(totalBytesWritten)
+         }
+         .responseJSON { (request, response, JSON, error) in
+             println(JSON)
+         }
 ```
 
 ### Downloading