Skip to content

Commit c3c544d

Browse files
committed
Merge pull request bbatsov#71 from kliph/clarify-trailing-parens-wording
clarify the wording on trailing parentheses
2 parents 5c02055 + 128ca32 commit c3c544d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,14 +204,14 @@ of commas and line breaks.
204204
{:name "Bruce Wayne", :alter-ego "Batman"}
205205
```
206206

207-
* Place all trailing parentheses on a single line.
207+
* Place all trailing parentheses on a single line instead of distinct lines.
208208

209209
```Clojure
210-
;; good
210+
;; good; single line
211211
(when something
212212
(something-else))
213213

214-
;; bad
214+
;; bad; distinct lines
215215
(when something
216216
(something-else)
217217
)

0 commit comments

Comments
 (0)