Skip to content

Commit

Permalink
Fix typo in statements.md
Browse files Browse the repository at this point in the history
  • Loading branch information
timsat authored and lerno committed Jan 4, 2025
1 parent fd57064 commit bc55976
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/docs/Language Fundamentals/statements.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ switch (true)

The above would be equivalent to writing:
```c3
if (c < 0)
if (x < 0)
{
xless();
}
Expand Down Expand Up @@ -169,4 +169,4 @@ switch
case test() == 1:
baz();
}
```
```

0 comments on commit bc55976

Please sign in to comment.