Browse Source

Merge pull request #125 from iUtvikler/master

Update README.md
Mattt Thompson 11 years ago
parent
commit
4e8441915a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -89,7 +89,7 @@ Alamofire.request(.GET, "http://httpbin.org/get")
 ```swift
 Alamofire.request(.GET, "http://httpbin.org/get")
          .responseJSON { (_, _, JSON, _) in
-                  println(string)
+                  println(JSON)
          }
 ```
 
@@ -103,7 +103,7 @@ Alamofire.request(.GET, "http://httpbin.org/get")
                   println(string)
          }
          .responseJSON { (_, _, JSON, _) in
-                  println(string)
+                  println(JSON)
          }
 ```