diff options
author | Godfrey Chan <godfreykfc@gmail.com> | 2014-05-12 15:37:26 -0700 |
---|---|---|
committer | Godfrey Chan <godfreykfc@gmail.com> | 2014-05-12 15:37:26 -0700 |
commit | c29474ecd605f9192bcf8b623ecd0a3f69a2ad7e (patch) | |
tree | 1b70320d1bd509c2ec4cbd6c52b1bfbcd5eaca4c | |
parent | 9df60693d77813b362fb528fc62381ac8f1eec12 (diff) | |
download | rails-c29474ecd605f9192bcf8b623ecd0a3f69a2ad7e.tar.gz rails-c29474ecd605f9192bcf8b623ecd0a3f69a2ad7e.tar.bz2 rails-c29474ecd605f9192bcf8b623ecd0a3f69a2ad7e.zip |
typo: resulution -> resolution [ci skip]
-rw-r--r-- | guides/source/active_record_postgresql.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_postgresql.md b/guides/source/active_record_postgresql.md index 14f7f4dccd..169a48afb9 100644 --- a/guides/source/active_record_postgresql.md +++ b/guides/source/active_record_postgresql.md @@ -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 |