branch: externals/clipboard-collector
commit d7fff65497fbcfcf1d8bdbca4a3e4dc526433982
Author: Clemera <[email protected]>
Commit: Clemera <[email protected]>
Rephrase
---
README.org | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.org b/README.org
index 840c37b..edab5fb 100644
--- a/README.org
+++ b/README.org
@@ -44,11 +44,11 @@ other place you could use:
((".*" "%s")))
#+END_SRC
-It's also possible to provide an additional function to transform the contents
-before applying the format string. For example to upcase all collected items
you
-would use something like this:
+It's also possible to provide an function to transform the contents before
+applying the format string. For example to upcase all collected items you could
+use something like this:
#+BEGIN_SRC elisp
(clipboard-collector-create cc-all-up
- ((".*" "%s" upcase)))
+ ((".*" "Upcased: %s" upcase)))
#+END_SRC