Skip to content

Commit c95d9e7

Browse files
committed
Fix "docstring wider than 80 characters" errors
1 parent fbbbe60 commit c95d9e7

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

purescript-indent.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,8 @@ Returns the location of the start of the comment, nil otherwise."
432432
(purescript-indent-skip-blanks-and-newlines-forward end))))
433433

434434
(defun purescript-indent-next-symbol-safe (end)
435-
"Puts point to the next following symbol, or to end if there are no more symbols in the sexp."
435+
"Puts point to the next following symbol, or to end if there are no more
436+
symbols in the sexp."
436437
(condition-case errlist (purescript-indent-next-symbol end)
437438
(error (goto-char end))))
438439

purescript-mode.el

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,9 @@ is asked to show extra info for the items matching QUERY.."
445445
:safe 'integerp)
446446

447447
(defun purescript-mode-suggest-indent-choice ()
448-
"Ran when the user tries to indent in the buffer but no indentation mode has been selected.
448+
"Ran when the user tries to indent in the buffer but no indentation mode
449+
has been selected.
450+
449451
Brings up the documentation for purescript-mode-hook."
450452
(describe-variable 'purescript-mode-hook))
451453

purescript-move-nested.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434

3535
;;;###autoload
3636
(defun purescript-move-nested (cols)
37-
"Shift the nested off-side-rule block adjacent to point by COLS columns to the right.
37+
"Shift the nested off-side-rule block adjacent to point by COLS columns
38+
to the right.
3839
3940
In Transient Mark mode, if the mark is active, operate on the contents
4041
of the region instead.

0 commit comments

Comments
 (0)