Use consistent number of hash signs

This commit is contained in:
Jo Liss
2011-12-28 17:26:57 +01:00
parent f712d07b23
commit 27b745d04f
3 changed files with 3 additions and 3 deletions

View File

@@ -62,7 +62,7 @@ CONTENT
# t.string :unlock_token # Only if unlock strategy is :email or :both
# t.datetime :locked_at
# Token authenticatable
## Token authenticatable
# t.string :authentication_token
RUBY
end

View File

@@ -40,6 +40,6 @@ class User
field :unlock_token, :type => String # Only if unlock strategy is :email or :both
field :locked_at, :type => Time
# Token authenticatable
## Token authenticatable
field :authentication_token, :type => String
end

View File

@@ -36,7 +36,7 @@ class CreateTables < ActiveRecord::Migration
t.string :unlock_token # Only if unlock strategy is :email or :both
t.datetime :locked_at
# Token authenticatable
## Token authenticatable
t.string :authentication_token
t.timestamps