turingschool-examples / ruby-exercises

A collection of exercises to practice various aspects of Ruby
MIT License
237 stars 766 forks source link

Typo error in `command-query/exercises/cupcakes_spec.rb` on line 7 #121

Closed brandenge closed 1 year ago

brandenge commented 1 year ago

There is a typo error in command-query/exercises/cupcakes_spec.rb on line 7.

cupcakes = Cupcake.new

should be

cupcakes = Cupcakes.new

Note the sweetest method, which should belong to the Cupcakes class, not the Cupcake class.