Skip to content

Commit 6f34dca

Browse files
committed
More checkdoc fixes
1 parent 9a3570d commit 6f34dca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

json-mode.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ json font lock syntactic face function."
149149

150150
;;;###autoload
151151
(define-derived-mode json-mode javascript-mode "JSON"
152-
"Major mode for editing JSON files"
152+
"Major mode for editing JSON files."
153153
:syntax-table json-mode-syntax-table
154154
(setq font-lock-defaults
155155
'(json-font-lock-keywords-1
@@ -158,7 +158,7 @@ json font lock syntactic face function."
158158

159159
;;;###autoload
160160
(define-derived-mode jsonc-mode json-mode "JSONC"
161-
"Major mode for editing JSON files with comments"
161+
"Major mode for editing JSON files with comments."
162162
:syntax-table jsonc-mode-syntax-table)
163163
(setq font-lock-defaults '(json-font-lock-keywords-1 t))
164164

@@ -184,7 +184,7 @@ json font lock syntactic face function."
184184

185185
;;;###autoload
186186
(defun json-mode-beautify (begin end)
187-
"Beautify / pretty-print the active region (or the entire buffer if no active region)."
187+
"Beautify/pretty-print from BEGIN to END (or the entire buffer if no active region)."
188188
(interactive "r")
189189
(unless (use-region-p)
190190
(setq begin (point-min)

0 commit comments

Comments
 (0)