Skip to content

Commit e967d58

Browse files
authored
Fix typo (#14447)
1 parent 7b8bcb9 commit e967d58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lib/elixir/pages/getting-started/case-cond-and-if.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ If you find yourself nesting several [`if`](`if/2`) blocks, you may want to cons
134134

135135
## cond
136136

137-
We have used `case` to find a matching clauses from many patterns. We have used `if` to check for a single condition. If you need to check across several conditions and find the first one that does not evaluate to `nil` or `false`, [`cond`](`cond/1`) is a useful construct:
137+
We have used `case` to find a matching clause from many patterns. We have used `if` to check for a single condition. If you need to check across several conditions and find the first one that does not evaluate to `nil` or `false`, [`cond`](`cond/1`) is a useful construct:
138138

139139
```elixir
140140
iex> cond do

0 commit comments

Comments
 (0)