ga-wdi-boston / ruby-object-model

Other
1 stars 109 forks source link

Typo in README.md #17

Closed BenGitsCode closed 7 years ago

BenGitsCode commented 7 years ago

-- README.md

 class Album
   attr_accessor :tracks

-  def initialze
+  def initialize
     @tracks = []
   end
 end