Skip to content

Commit 102ad5f

Browse files
committed
Merge pull request #67 from tromey/fix-two-docstrings
fix quoting in two doc strings
2 parents 7baae9c + 3798c7e commit 102ad5f

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
@@ -1176,14 +1176,14 @@ This is written mainly to be used as `end-of-defun-function' for Rust."
11761176
" \\(?:[Ee]rror\\|\\([Ww]arning\\)\\):")))
11771177
(cons re '(1 (2 . 4) (3 . 5) (6)))))
11781178
"Specifications for matching errors in rustc invocations.
1179-
See `compilation-error-regexp-alist for help on their format.")
1179+
See `compilation-error-regexp-alist' for help on their format.")
11801180

11811181
;; Match test run failures and panics during compilation as
11821182
;; compilation warnings
11831183
(defvar cargo-compilation-regexps
11841184
'("^\\s-+thread '[^']+' panicked at \\('[^']+', \\([^:]+\\):\\([0-9]+\\)\\)" 2 3 nil nil 1)
11851185
"Specifications for matching panics in cargo test invocations.
1186-
See `compilation-error-regexp-alist for help on their format.")
1186+
See `compilation-error-regexp-alist' for help on their format.")
11871187

11881188
(eval-after-load 'compile
11891189
'(progn

0 commit comments

Comments
 (0)