Skip to content

Commit

Permalink
Fix syntax error in README (#46)
Browse files Browse the repository at this point in the history
The reader syntax for function-quoting is #'func, not '#func. This
looks like a simple typo.
  • Loading branch information
vermiculus authored Jul 15, 2024
1 parent c47a499 commit 47dca2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cargo-transient is available on [[https://melpa.org/#/cargo-transient][MELPA]].
#+begin_src elisp
(use-package cargo-transient
:custom
(cargo-transient-buffer-name-function '#project-prefixed-buffer-name))
(cargo-transient-buffer-name-function #'project-prefixed-buffer-name))
#+end_src

By default, all commands will share the same compilation buffer, but that can be changed by customizing ~cargo-transient-compilation-buffer-name-function~.
Expand Down

0 comments on commit 47dca2f

Please sign in to comment.