You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Chapter 3, Lesson 2, one of the examples (string_start_with) accepts a call to "starts_with?" as correct. The correct method is "start_with?". For example...
# This is accepted by the lesson, even though starts_with? is not valid Ruby.
"Ruby is a beautiful language".starts_with? "Ruby"
# This is also accepted by the lesson, correctly.
"Ruby is a beautiful language".start_with? "Ruby"
The text was updated successfully, but these errors were encountered:
In Chapter 3, Lesson 2, one of the examples (string_start_with) accepts a call to "starts_with?" as correct. The correct method is "start_with?". For example...
The text was updated successfully, but these errors were encountered: