summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--README.org6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.org b/README.org
index 0b2bddc..9317b74 100644
--- a/README.org
+++ b/README.org
@@ -18,8 +18,10 @@ If a tag is not found, return an empty string "" as the value. If no
 TAGS are specified, read all tags from FILE.
 
 #+BEGIN_SRC emacs-lisp
-  (el-exiftool-read "test1.png" "ImageSize") ;; => '(("ImageSize" . "64x64"))
-  (el-exiftool-read "test1.png" "ImageSize" "Interlace") ;; => '(("ImageSize" . "64x64") ("Interlace" . "Noninterlaced"))
+  (el-exiftool-read "test1.png" "ImageSize")
+  ;; => '(("ImageSize" . "64x64"))
+  (el-exiftool-read "test1.png" "ImageSize" "Interlace")
+  ;; => '(("ImageSize" . "64x64") ("Interlace" . "Noninterlaced"))
   (el-exiftool-read "test1.png")
   ;; => '(("ExifToolVersion" . "10.20")
   ;; ("FileName" . "test1.png")