Fix weird character in README

This commit is contained in:
Michael Bleigh 2011-10-16 19:54:26 -04:00
parent 326e1a0e9c
commit b11bd38ff9
1 changed files with 1 additions and 1 deletions

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