Skip to content

Commit be6cd16

Browse files
committed
Update README.md
Make 30 -> :thirty (was :forty - not sure if that was a joke or an oversight!)
1 parent 5f5e727 commit be6cd16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -898,14 +898,14 @@ pairwise constructs as found in e.g. `let` and `cond`.
898898
(cond
899899
(= x 10) :ten
900900
(= x 20) :twenty
901-
(= x 30) :forty
901+
(= x 30) :thirty
902902
:else :dunno)
903903

904904
;; much better
905905
(condp = x
906906
10 :ten
907907
20 :twenty
908-
30 :forty
908+
30 :thirty
909909
:dunno)
910910
```
911911

0 commit comments

Comments
 (0)