Skip to content

Commit

Permalink
Escape single quotes in docstrings to appease byte compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Feb 28, 2023
1 parent 6b44897 commit 87ab69f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dhall-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -139,19 +139,19 @@ If specified, this should be the complete path to your dhall-format executable,
:safe 'booleanp)

(defcustom dhall-format-arguments nil
"Provide a list of arguments for the formatter e.g. '(\"--ascii\")."
"Provide a list of arguments for the formatter e.g. \='(\"--ascii\")."
:type 'list
:group 'dhall
:safe 'listp)

(defcustom dhall-freeze-arguments nil
"Provide a list of arguments for freeze e.g. '(\"--transitive\")."
"Provide a list of arguments for freeze e.g. ='(\"--transitive\")."
:type 'list
:group 'dhall
:safe 'listp)

(defcustom dhall-lint-arguments nil
"Provide a list of arguments for the linter e.g. '(\"--transitive\")."
"Provide a list of arguments for the linter e.g. \='(\"--transitive\")."
:type 'list
:group 'dhall
:safe 'listp)
Expand Down

0 comments on commit 87ab69f

Please sign in to comment.