Skip to content

Commit

Permalink
Do not talk about "statements" (exercism#740)
Browse files Browse the repository at this point in the history
  • Loading branch information
angelikatyborska authored May 23, 2021
1 parent afc4b07 commit fb83528
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion concepts/case/introduction.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Introduction

`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.
`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.

```elixir
age = 15
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/german-sysadmin/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The longer the first list is, the slower the concatenation, so avoid repeatedly

## Case

`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.
`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.

```elixir
age = 15
Expand Down

0 comments on commit fb83528

Please sign in to comment.