Skip to content

Commit c49fb66

Browse files
committed
typo
1 parent ea0d988 commit c49fb66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: getting-started/case-cond-and-if.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ iex> if false, do: :this, else: :that
230230
:that
231231
```
232232

233-
`do/end` blocks are a syntatic convenience built on top of the keywords one. That's why `do/end` blocks do not require a comma between the previous argument and the block. They are useful exactly because they remove the verbosity when writing blocks of code. These are equivalent:
233+
`do/end` blocks are a syntactic convenience built on top of the keywords one. That's why `do/end` blocks do not require a comma between the previous argument and the block. They are useful exactly because they remove the verbosity when writing blocks of code. These are equivalent:
234234

235235
```iex
236236
iex> if true do

0 commit comments

Comments
 (0)