diff --git a/concepts/bools/about.md b/concepts/bools/about.md index e5480837913..4b697270659 100644 --- a/concepts/bools/about.md +++ b/concepts/bools/about.md @@ -29,7 +29,7 @@ False True ``` -All `boolean operators` are considered lower precedence than Pythons [`comparison operators`][comparisons], such as `==`, `>`, `<`, `is` and `is not`. +All `boolean operators` are considered lower precedence than Python's [`comparison operators`][comparisons], such as `==`, `>`, `<`, `is` and `is not`. ## Type Coercion and Truthiness diff --git a/exercises/concept/ghost-gobble-arcade-game/.meta/exemplar.py b/exercises/concept/ghost-gobble-arcade-game/.meta/exemplar.py index 710364d3b3b..1adb3e4579c 100644 --- a/exercises/concept/ghost-gobble-arcade-game/.meta/exemplar.py +++ b/exercises/concept/ghost-gobble-arcade-game/.meta/exemplar.py @@ -15,7 +15,7 @@ def eat_ghost(power_pellet_active, touching_ghost): def score(touching_power_pellet, touching_dot): """Verify that Pac-Man has scored when a power pellet or dot has been eaten. - :param touching_power_pellet: bool - does the player have an active power pellet? + :param touching_power_pellet: bool - is the player touching a power pellet? :param touching_dot: bool - is the player touching a dot? :return: bool - has the player scored or not? """ diff --git a/exercises/concept/ghost-gobble-arcade-game/arcade_game.py b/exercises/concept/ghost-gobble-arcade-game/arcade_game.py index 479109bbcaf..c9807d23207 100644 --- a/exercises/concept/ghost-gobble-arcade-game/arcade_game.py +++ b/exercises/concept/ghost-gobble-arcade-game/arcade_game.py @@ -15,7 +15,7 @@ def eat_ghost(power_pellet_active, touching_ghost): def score(touching_power_pellet, touching_dot): """Verify that Pac-Man has scored when a power pellet or dot has been eaten. - :param touching_power_pellet: bool - does the player have an active power pellet? + :param touching_power_pellet: bool - is the player touching a power pellet? :param touching_dot: bool - is the player touching a dot? :return: bool - has the player scored or not? """