Skip to content

Commit da0f053

Browse files
authored
Clarify guidance in Ghost Gobble Arcade Game
1 parent 608b963 commit da0f053

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/ghost-gobble-arcade-game/.docs/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ True
4242
## 4. Define if Pac-Man wins
4343

4444
Define the `win()` function that takes three parameters (_if Pac-Man has eaten all of the dots_, _if Pac-Man has a power pellet active_, and _if Pac-Man is touching a ghost_) and returns a Boolean value if Pac-Man wins.
45-
The function should return `True` if Pac-Man has eaten all of the dots and has not lost based on the parameters defined in part 3.
45+
The function should return `True` if Pac-Man has eaten all of the dots and has not lost based on the rules defined in part 3.
4646

4747
```python
4848
>>> win(False, True, False)

0 commit comments

Comments
 (0)