Skip to content

Commit 4f325ca

Browse files
committed
Fix indentation -> list-inclusion of code-block.
1 parent 2ff2ec4 commit 4f325ca

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -197,23 +197,23 @@ when there are no arguments on the same line as the function name.
197197
Indent each arity form of a function definition vertically aligned with its
198198
parameters.<sup>[[link](#multiple-arity-indentation)]</sup>
199199

200-
```Clojure
201-
;; good
202-
(defn foo
203-
"I have two arities."
204-
([x]
205-
(foo x 1))
206-
([x y]
207-
(+ x y)))
208-
209-
;; bad - extra indentation
210-
(defn foo
211-
"I have two arities."
212-
([x]
213-
(foo x 1))
214-
([x y]
215-
(+ x y)))
216-
```
200+
```Clojure
201+
;; good
202+
(defn foo
203+
"I have two arities."
204+
([x]
205+
(foo x 1))
206+
([x y]
207+
(+ x y)))
208+
209+
;; bad - extra indentation
210+
(defn foo
211+
"I have two arities."
212+
([x]
213+
(foo x 1))
214+
([x y]
215+
(+ x y)))
216+
```
217217

218218
* <a name="align-docstring-lines"></a>
219219
Indent each line of multi-line docstrings.

0 commit comments

Comments
 (0)