aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/store.rb
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-11-09 16:12:38 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-11-09 16:12:38 -0200
commit2fd095507c2d48fdd24c8d2d060d1d01168e1d23 (patch)
tree97dd38bff5c27bb6396dfb4ac34dfa1987ebe755 /activerecord/lib/active_record/store.rb
parent675304b478dd36eacd3bac96c9eef96890d4aa91 (diff)
downloadrails-2fd095507c2d48fdd24c8d2d060d1d01168e1d23.tar.gz
rails-2fd095507c2d48fdd24c8d2d060d1d01168e1d23.tar.bz2
rails-2fd095507c2d48fdd24c8d2d060d1d01168e1d23.zip
Fix typo in AR store docs [ci skip]
Diffstat (limited to 'activerecord/lib/active_record/store.rb')
-rw-r--r--activerecord/lib/active_record/store.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/store.rb b/activerecord/lib/active_record/store.rb
index 301bc503c7..a3b23c0037 100644
--- a/activerecord/lib/active_record/store.rb
+++ b/activerecord/lib/active_record/store.rb
@@ -16,7 +16,7 @@ module ActiveRecord
# JSON, YAML, Marshal are supported out of the box. Generally it can be any wrapper that provides +load+ and +dump+.
#
# NOTE - If you are using special PostgreSQL columns like +hstore+ or +json+ there is no need for
- # the serialization provieded by +store+. You can simply use +store_accessor+ instead to generate
+ # the serialization provided by +store+. You can simply use +store_accessor+ instead to generate
# the accessor methods.
#
# Examples: