diff options
author | Jeroen K. <github-jrn@shrt.nl> | 2015-01-15 16:06:01 +0100 |
---|---|---|
committer | Jeroen K. <github-jrn@shrt.nl> | 2015-01-15 16:06:01 +0100 |
commit | 4bed3bc0871ae3f28270f171915544b768018776 (patch) | |
tree | 66acf7753041b98d0411f856bd3b0e23cd5431c7 | |
parent | 3f96b6973b82ad17e443dd1d21be05996fb6fbf0 (diff) | |
download | rails-4bed3bc0871ae3f28270f171915544b768018776.tar.gz rails-4bed3bc0871ae3f28270f171915544b768018776.tar.bz2 rails-4bed3bc0871ae3f28270f171915544b768018776.zip |
Fix Typo SecureToken for schema sample [ci skip]
-rw-r--r-- | activerecord/lib/active_record/secure_token.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/secure_token.rb b/activerecord/lib/active_record/secure_token.rb index be3c3bc847..07031b6371 100644 --- a/activerecord/lib/active_record/secure_token.rb +++ b/activerecord/lib/active_record/secure_token.rb @@ -5,7 +5,7 @@ module ActiveRecord module ClassMethods # Example using has_secure_token # - # # Schema: User(toke:string, auth_token:string) + # # Schema: User(token:string, auth_token:string) # class User < ActiveRecord::Base # has_secure_token # has_secure_token :auth_token |