Skip to content

Commit

Permalink
Fixed typos in commments.
Browse files Browse the repository at this point in the history
  • Loading branch information
boone committed Dec 22, 2011
1 parent 594f4f4 commit cc2f2c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/authlogic/acts_as_authentic/persistence_token.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Authlogic
module ActsAsAuthentic
# Maintains the persistence token, the token responsible for persisting sessions. This token
# gets stores in the session and the cookie.
# gets stored in the session and the cookie.
module PersistenceToken
def self.included(klass)
klass.class_eval do
Expand Down
2 changes: 1 addition & 1 deletion lib/authlogic/session/persistence.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def find(id = nil, priority_record = nil)

module InstanceMethods
# Let's you know if the session is being persisted or not, meaning the user does not have to explicitly log in
# in order to be logged in. If the session has no associated record, it will try to find a record and persis
# in order to be logged in. If the session has no associated record, it will try to find a record and persist
# the session. This is the method that the class level method find uses to ultimately persist the session.
def persisting?
return true if !record.nil?
Expand Down

0 comments on commit cc2f2c9

Please sign in to comment.