Small fix in the README.

This commit is contained in:
José Valim 2010-08-23 14:02:15 -07:00
parent 08da923276
commit 219c05ce49
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ A basic implementation for +find_for_github_oauth+ would be:
user
else
# Create an user with a stub password.
User.create!(:name => user["name"], :email => user["email"], :password => Devise.friendly_token)
User.create!(:name => data["name"], :email => data["email"], :password => Devise.friendly_token)
end
end