aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_postgresql.md
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2014-05-12 15:37:26 -0700
committerGodfrey Chan <godfreykfc@gmail.com>2014-05-12 15:37:26 -0700
commitc29474ecd605f9192bcf8b623ecd0a3f69a2ad7e (patch)
tree1b70320d1bd509c2ec4cbd6c52b1bfbcd5eaca4c /guides/source/active_record_postgresql.md
parent9df60693d77813b362fb528fc62381ac8f1eec12 (diff)
downloadrails-c29474ecd605f9192bcf8b623ecd0a3f69a2ad7e.tar.gz
rails-c29474ecd605f9192bcf8b623ecd0a3f69a2ad7e.tar.bz2
rails-c29474ecd605f9192bcf8b623ecd0a3f69a2ad7e.zip
typo: resulution -> resolution [ci skip]
Diffstat (limited to 'guides/source/active_record_postgresql.md')
-rw-r--r--guides/source/active_record_postgresql.md2
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