Skip to content

Commit 6458961

Browse files
committed
Fixed doc issue.
1 parent b2c305b commit 6458961

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

indent-control.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@
237237

238238

239239
(defun indent-control--clamp-integer (in-val in-min in-max)
240-
"Make sure the IN-VALUE is between IN-MIN and IN-MAX."
240+
"Make sure the IN-VAL is between IN-MIN and IN-MAX."
241241
(let ((out-result in-val))
242242
(cond ((<= in-val in-min) (progn (setq out-result in-min)))
243243
((>= in-val in-max) (progn (setq out-result in-max))))

0 commit comments

Comments
 (0)