Skip to content

Commit

Permalink
style: improve docstring to silent compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyinz committed Oct 23, 2023
1 parent 38e26cb commit b973c2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binky.el
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ record properties.")
;;; Functions

(defmacro binky--check (&rest body)
"Eval BODY forms only when `binky-mode' is enabled."
"Eval BODY forms only when binky mode is enabled."
`(if (bound-and-true-p binky-mode)
(progn ,@body)
(user-error "Binky mode is not enabled yet")))
Expand Down

0 comments on commit b973c2a

Please sign in to comment.