Skip to content

Commit 3798c7e

Browse files
committed
fix quoting in two doc strings
1 parent 86db9bd commit 3798c7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust-mode.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -751,14 +751,14 @@ This is written mainly to be used as `end-of-defun-function' for Rust."
751751
" \\(?:[Ee]rror\\|\\([Ww]arning\\)\\):")))
752752
(cons re '(1 (2 . 4) (3 . 5) (6)))))
753753
"Specifications for matching errors in rustc invocations.
754-
See `compilation-error-regexp-alist for help on their format.")
754+
See `compilation-error-regexp-alist' for help on their format.")
755755

756756
;; Match test run failures and panics during compilation as
757757
;; compilation warnings
758758
(defvar cargo-compilation-regexps
759759
'("^\\s-+thread '[^']+' panicked at \\('[^']+', \\([^:]+\\):\\([0-9]+\\)\\)" 2 3 nil nil 1)
760760
"Specifications for matching panics in cargo test invocations.
761-
See `compilation-error-regexp-alist for help on their format.")
761+
See `compilation-error-regexp-alist' for help on their format.")
762762

763763
(eval-after-load 'compile
764764
'(progn

0 commit comments

Comments
 (0)