Skip to content

Commit d355558

Browse files
committed
Fix a couple of docstrings
1 parent 473b49b commit d355558

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

clojure-mode.el

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -708,11 +708,11 @@ point) to check."
708708
;;; Vertical alignment
709709
(defcustom clojure-align-forms-automatically nil
710710
"If non-nil, vertically align some forms automatically.
711-
Automatically means it is done as part of indenting code. This
711+
Automatically means it is done as part of indenting code. This
712712
applies to binding forms (`clojure-align-binding-forms'), to cond
713-
forms (`clojure-align-cond-forms') and to map literals. For
714-
instance, selecting a map a hitting \\<clojure-mode-map>`\\[indent-for-tab-command]' will align the values
715-
like this:
713+
forms (`clojure-align-cond-forms') and to map literals. For
714+
instance, selecting a map a hitting \\<clojure-mode-map>`\\[indent-for-tab-command]'
715+
will align the values like this:
716716
{:some-key 10
717717
:key2 20}"
718718
:package-version '(clojure-mode . "5.1")
@@ -736,8 +736,8 @@ This function expects to be called immediately after an
736736
open-brace or after the function symbol in a function call.
737737
738738
First check if the sexp around point is a map literal, or is a
739-
call to one of the vars listed in `clojure-align-cond-forms'. If
740-
it isn't, return nil. If it is, return non-nil and place point
739+
call to one of the vars listed in `clojure-align-cond-forms'. If
740+
it isn't, return nil. If it is, return non-nil and place point
741741
immediately before the forms that should be aligned.
742742
743743
For instance, in a map literal point is left immediately before

0 commit comments

Comments
 (0)