Skip to content

Commit dc81709

Browse files
authored
If has then and else clauses.
1 parent e26e060 commit dc81709

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
@@ -130,18 +130,18 @@ An even better idea would be to force the use of spaces using
130130
(something-else))
131131
```
132132
133-
* Note the "if" clause of an `if` form is a special argument, indent it
133+
* Note that the "then" clause of an `if` form is a special argument, indent it
134134
by 4 spaces.
135135
136136
```el
137137
;; good
138138
(if something
139-
if-clause
139+
then-clause
140140
else-clause)
141141
142142
;; bad
143143
(if something
144-
if-clause
144+
then-clause
145145
else-clause)
146146
```
147147

0 commit comments

Comments
 (0)