diff options
author | chrismcc <mcclelland.c@gmail.com> | 2012-06-11 09:54:54 -0300 |
---|---|---|
committer | chrismcc <mcclelland.c@gmail.com> | 2012-06-11 09:54:54 -0300 |
commit | a6e4c0f3e4d835c84ba2b504648181e0670cff40 (patch) | |
tree | dfe005fa10a7ac5bf007032864ba5e752977e5cc | |
parent | 57170af5c33592b92d340a96bc1286cb8e678ae8 (diff) | |
download | rails-a6e4c0f3e4d835c84ba2b504648181e0670cff40.tar.gz rails-a6e4c0f3e4d835c84ba2b504648181e0670cff40.tar.bz2 rails-a6e4c0f3e4d835c84ba2b504648181e0670cff40.zip |
Fixed typo.
-rw-r--r-- | activerecord/lib/active_record/store.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/store.rb b/activerecord/lib/active_record/store.rb index d70e02e379..542cb3187a 100644 --- a/activerecord/lib/active_record/store.rb +++ b/activerecord/lib/active_record/store.rb @@ -2,7 +2,7 @@ require 'active_support/core_ext/hash/indifferent_access' module ActiveRecord # Store gives you a thin wrapper around serialize for the purpose of storing hashes in a single column. - # It's like a simple key/value store backed into your record when you don't care about being able to + # It's like a simple key/value store baked into your record when you don't care about being able to # query that store outside the context of a single record. # # You can then declare accessors to this store that are then accessible just like any other attribute |