typo: resulution -> resolution [ci skip]

This commit is contained in:
Godfrey Chan 2014-05-12 15:37:26 -07:00
parent 9df60693d7
commit c29474ecd6

@ -98,7 +98,7 @@ Profile.create(settings: { "color" => "blue", "resolution" => "800x600" })
profile = Profile.first
profile.settings # => {"color"=>"blue", "resolution"=>"800x600"}
profile.settings = {"color" => "yellow", "resulution" => "1280x1024"}
profile.settings = {"color" => "yellow", "resolution" => "1280x1024"}
profile.save!
## you need to call _will_change! if you are editing the store in place