Skip to content

Commit cc9244b

Browse files
authored
Fix typo in moviegoer (#1781)
* Fix instances of class method notation to instance method notation
1 parent a44770c commit cc9244b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

exercises/concept/moviegoer/.docs/hints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## 2. Check if a moviegoer is allowed to see scary movies
88

9-
- [Compare][doc-integer-gtoe] the moviegoer's age with the minimum age allowed to see scary movies. You don't even need thee ternary operator in this task.
9+
- [Compare][doc-integer-gtoe] the moviegoer's age with the minimum age allowed to see scary movies. You don't even need the ternary operator in this task.
1010

1111
## 3. Check if a moviegoer is entitled to free popcorn
1212

exercises/concept/moviegoer/.docs/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The cinema has a simplified age-verification system.
2424
If you are 18 or over you can watch scary movies.
2525
If you are younger, you cannot.
2626

27-
Implement the `Moviegoer.watch_scary_movie?` method.
27+
Implement the `Moviegoer#watch_scary_movie?` method.
2828
It should return whether someone is allowed to watch the movie or not.
2929

3030
```ruby

0 commit comments

Comments
 (0)