Skip to content

Commit f0d0d7e

Browse files
committed
Merge pull request onevcat#168 from RyanRamchandar/patch-1
Replace println() with print()
2 parents fc078a8 + 11e5fe6 commit f0d0d7e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,10 @@ imageView.kf_setImageWithURL(NSURL(string: "your_image_url")!,
205205
placeholderImage: nil,
206206
optionsInfo: nil,
207207
progressBlock: { (receivedSize, totalSize) -> () in
208-
println("Download Progress: \(receivedSize)/\(totalSize)")
208+
print("Download Progress: \(receivedSize)/\(totalSize)")
209209
},
210210
completionHandler: { (image, error, imageURL) -> () in
211-
println("Downloaded and set!")
211+
print("Downloaded and set!")
212212
}
213213
)
214214
```
@@ -259,7 +259,7 @@ cache.maxCachePeriodInSecond = 60 * 60 * 24 * 3
259259

260260
// Get the disk size taken by the cache.
261261
cache.calculateDiskCacheSizeWithCompletionHandler { (size) -> () in
262-
println("disk size in bytes: \(size)")
262+
print("disk size in bytes: \(size)")
263263
}
264264
```
265265

0 commit comments

Comments
 (0)