diff options
author | Zachary Scott <e@zzak.io> | 2015-01-15 07:23:14 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2015-01-15 07:23:14 -0800 |
commit | 4c1f7c995ff45f6b483e8fe458b59a2c1335a888 (patch) | |
tree | 71e85d299a1962bc66b291e04837989d381ad003 /activerecord | |
parent | b814d8c98fe6b21e9097b1e69851275c148e555a (diff) | |
parent | 4bed3bc0871ae3f28270f171915544b768018776 (diff) | |
download | rails-4c1f7c995ff45f6b483e8fe458b59a2c1335a888.tar.gz rails-4c1f7c995ff45f6b483e8fe458b59a2c1335a888.tar.bz2 rails-4c1f7c995ff45f6b483e8fe458b59a2c1335a888.zip |
Merge pull request #18537 from jrnk/patch-1
Fix Typo SecureToken for schema sample [ci skip]
Diffstat (limited to 'activerecord')
-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 |