Skip to content

Commit b8b8140

Browse files
committed
Merge pull request bbatsov#125 from Sangdol/fix-commenting-mark
Use ;; instead of # for commenting
2 parents f29e444 + a6b9cdb commit b8b8140

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1018,12 +1018,11 @@ hints for the pairwise grouping with comments or empty lines.
10181018
<sup>[[link](#list-star-instead-of-nested-cons)]</sup>
10191019

10201020
```Clojure
1021-
# good
1021+
;; good
10221022
(list* 1 2 3 [4 5])
10231023

1024-
# bad
1024+
;; bad
10251025
(cons 1 (cons 2 (cons 3 [4 5])))
1026-
10271026
```
10281027

10291028
* <a name="sugared-java-interop"></a>

0 commit comments

Comments
 (0)