Skip to content

Commit 185244a

Browse files
committed
Merge pull request GitbookIO#33 from hasselg/else_conciseness
Improved conciseness of first paragraph.
2 parents 5fa3d51 + e5840bb commit 185244a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

conditional/else.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Else
22

3-
There is also an `else` clause that will be applied every time the first condition isn’t true. This is very powerful if you want to react to any value, but single out one in particular for special treatment:
3+
There is also an `else` clause that will be applied when the first condition isn’t true. This is very powerful if you want to react to any value, but single out one in particular for special treatment:
44

55
```javascript
66
var umbrellaMandatory;
@@ -53,4 +53,4 @@ if (name === "John") {
5353
assert(name === "Aaron");
5454
```
5555

56-
---
56+
---

0 commit comments

Comments
 (0)