* lisp/help-mode.el (help-mode-syntax-table): Fix punctuation in a
comment.
(defvar help-mode-syntax-table
(let ((table (make-syntax-table emacs-lisp-mode-syntax-table)))
- ;; treat single quotes as parens so that forward-sexp does not
- ;; break when quoted string contains punctuation
+ ;; Treat single quotes as parens so that forward-sexp does not
+ ;; break when a quoted string contains punctuation.
(modify-syntax-entry ?‘ "(’ " table)
(modify-syntax-entry ?’ ")‘ " table)
table)