summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCássio Ávila <cassioavila@protonmail.com>2024-05-14 09:05:35 -0300
committerGitHub <noreply@github.com>2024-05-14 14:05:35 +0200
commit21d20da80d203e04ea8dfa994f87c3b3ea9e5cd5 (patch)
tree1d0a348cae54d8606250139f0b4ef3c8876abe6b
parentb779552341354d59365a981fd208ae07b7a2950a (diff)
Fix unbalanced parentheses in the README (#458)
-rw-r--r--README.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.org b/README.org
index c8aa39a..d586036 100644
--- a/README.org
+++ b/README.org
@@ -244,7 +244,7 @@ source code for further details.
#+begin_src emacs-lisp
(defun orderless-fast-dispatch (word index total)
(and (= index 0) (= total 1) (length< word 4)
- (cons 'orderless-literal-prefix word))))
+ (cons 'orderless-literal-prefix word)))
(orderless-define-completion-style orderless-fast
(orderless-style-dispatchers '(orderless-fast-dispatch))