Skip to content

Commit

Permalink
Merge pull request onevcat#168 from RyanRamchandar/patch-1
Browse files Browse the repository at this point in the history
Replace println() with print()
  • Loading branch information
onevcat committed Dec 6, 2015
2 parents fc078a8 + 11e5fe6 commit f0d0d7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,10 @@ imageView.kf_setImageWithURL(NSURL(string: "your_image_url")!,
placeholderImage: nil,
optionsInfo: nil,
progressBlock: { (receivedSize, totalSize) -> () in
println("Download Progress: \(receivedSize)/\(totalSize)")
print("Download Progress: \(receivedSize)/\(totalSize)")
},
completionHandler: { (image, error, imageURL) -> () in
println("Downloaded and set!")
print("Downloaded and set!")
}
)
```
Expand Down Expand Up @@ -259,7 +259,7 @@ cache.maxCachePeriodInSecond = 60 * 60 * 24 * 3

// Get the disk size taken by the cache.
cache.calculateDiskCacheSizeWithCompletionHandler { (size) -> () in
println("disk size in bytes: \(size)")
print("disk size in bytes: \(size)")
}
```

Expand Down

0 comments on commit f0d0d7e

Please sign in to comment.