We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2c305b commit 6458961Copy full SHA for 6458961
indent-control.el
@@ -237,7 +237,7 @@
237
238
239
(defun indent-control--clamp-integer (in-val in-min in-max)
240
- "Make sure the IN-VALUE is between IN-MIN and IN-MAX."
+ "Make sure the IN-VAL is between IN-MIN and IN-MAX."
241
(let ((out-result in-val))
242
(cond ((<= in-val in-min) (progn (setq out-result in-min)))
243
((>= in-val in-max) (progn (setq out-result in-max))))
0 commit comments