From 9124fedfb68b3fd6fb469cc0bef4d605f13c1999 Mon Sep 17 00:00:00 2001 From: Parker Wightman Date: Sun, 12 Feb 2017 21:16:15 -0700 Subject: [PATCH] Update README.md Make the type of `myImage` clear --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f09304c..095dfb3 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,8 @@ SwiftOCR is the exact opposite of Tesseract. It can be implemented using **just ```swift import SwiftOCR -let swiftOCRInstance = SwiftOCR() +let myImage: UIImage = ... +let swiftOCRInstance = SwiftOCR() swiftOCRInstance.recognize(myImage) {recognizedString in print(recognizedString)