1
0
Fork 0
mirror of https://github.com/omniauth/omniauth.git synced 2022-11-09 12:31:49 -05:00

Fix weird character in README

This commit is contained in:
Michael Bleigh 2011-10-16 19:54:26 -04:00
parent 326e1a0e9c
commit b11bd38ff9

View file

@ -84,7 +84,7 @@ something like this:
class SessionsController < ApplicationController
def create
@user = ̈User.find_or_create_from_auth_hash(auth_hash)
@user = User.find_or_create_from_auth_hash(auth_hash)
self.current_user = @user
redirect_to '/'
end