Skip to content

Commit ed85f48

Browse files
authored
Fix grammar: reword '...keywords one'.
1 parent 429e36f commit ed85f48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting-started/case-cond-and-if.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ iex> if false, do: :this, else: :that
186186
:that
187187
```
188188

189-
`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:
189+
`do/end` blocks are a syntactic convenience built on top of existing keywords. 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:
190190

191191
```iex
192192
iex> if true do

0 commit comments

Comments
 (0)