Skip to content

Commit fb83528

Browse files
Do not talk about "statements" (exercism#740)
1 parent afc4b07 commit fb83528

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

concepts/case/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Introduction
22

3-
`case` is a control flow structure that allows us to compare a given value against many patterns. Clauses in a `case` statement are evaluated from top to bottom, until a match is found.
3+
`case` is a control flow structure that allows us to compare a given value against many patterns. Clauses in a `case` expression are evaluated from top to bottom, until a match is found.
44

55
```elixir
66
age = 15

exercises/concept/german-sysadmin/.docs/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The longer the first list is, the slower the concatenation, so avoid repeatedly
4444

4545
## Case
4646

47-
`case` is a control flow structure that allows us to compare a given value against many patterns. Clauses in a `case` statement are evaluated from top to bottom, until a match is found.
47+
`case` is a control flow structure that allows us to compare a given value against many patterns. Clauses in a `case` expression are evaluated from top to bottom, until a match is found.
4848

4949
```elixir
5050
age = 15

0 commit comments

Comments
 (0)