Fix order of elements in defcustom type

* calibre-book.el (calibre-format-preferences): Move tag before the
  type.
This commit is contained in:
Kjartan Oli Agustsson 2023-12-12 11:01:13 +00:00
parent 6815074635
commit b749cf57d4
Signed by: kjartanoli
GPG Key ID: D7572FE3605EE6B0
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@
(defcustom calibre-format-preferences '(pdf epub)
"The preference order of file formats."
:type '(repeat symbol :tag "Format")
:type '(repeat :tag "Format" symbol)
:package-version '("calibre" . "0.1.0")
:group 'calibre)