about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--README.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.org b/README.org
index b7e613d..b4b3bd4 100644
--- a/README.org
+++ b/README.org
@@ -67,9 +67,9 @@ If no TAGS are specified, copy all tags from SOURCE.
 #+BEGIN_SRC emacs-lisp
   ;; Copy all writable tags
   (exiftool-copy "source.png" "destination.png")
-  ;; Copy only the tag Marked
+  ;; Copy only the tag "Marked"
   (exiftool-copy "source.png" "destination.png" "Marked")
-  ;; Copy only the tags Marked and Creator
+  ;; Copy only the tags "Marked" and "Creator"
   (exiftool-copy "source.png" "destination.png" "Marked" "Creator")
 #+END_SRC