Skip to content

Commit 7eacda3

Browse files
committed
purescript-sort-imports.el: make sure (interactive) is after docstring
Fixes: purescript-sort-imports.el:41:4: Error: Doc string after ‘interactive’
1 parent c8dad40 commit 7eacda3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

purescript-sort-imports.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@
3838

3939
;;;###autoload
4040
(defun purescript-sort-imports ()
41-
(interactive)
4241
"Sort the import list at point. It sorts the current group
4342
i.e. an import list separated by blank lines on either side.
4443
4544
If the region is active, it will restrict the imports to sort
4645
within that region."
46+
(interactive)
4747
(when (purescript-sort-imports-at-import)
4848
(let* ((points (purescript-sort-imports-decl-points))
4949
(current-string (buffer-substring-no-properties (car points)

0 commit comments

Comments
 (0)