Skip to content

Commit

Permalink
Update introduction.md
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasantony12 authored Jun 3, 2024
1 parent 385dabd commit 52014d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/concept/annalyns-infiltration/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

## Booleans

Booleans in Java are represented by the `boolean` type, which values can be either `true` or `false`.
Booleans in Java are represented by the `boolean` type, whose values can be either `true` or `false`.

Java supports three boolean operators:

- `!` (NOT): negates the boolean
- `&&` (AND): takes two booleans and results in true if they're both true
- `||` (OR): results in true if any of the two booleans is true
- `||` (OR): results in true if any of the two booleans are true

### Examples

Expand Down

0 comments on commit 52014d4

Please sign in to comment.