Skip to content

Commit

Permalink
a couple of spurious spaces I saw in passing
Browse files Browse the repository at this point in the history
  • Loading branch information
fxn committed Nov 21, 2011
1 parent 4c872c0 commit 60e3e21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions activesupport/lib/active_support/cache.rb
Expand Up @@ -149,7 +149,7 @@ class Store

# Create a new cache. The options will be passed to any write method calls except
# for :namespace which can be used to set the global namespace for the cache.
def initialize (options = nil)
def initialize(options = nil)
@options = options ? options.dup : {}
end

Expand Down Expand Up @@ -538,7 +538,7 @@ class << self
# Create an entry with internal attributes set. This method is intended to be
# used by implementations that store cache entries in a native format instead
# of as serialized Ruby objects.
def create (raw_value, created_at, options = {})
def create(raw_value, created_at, options = {})
entry = new(nil)
entry.instance_variable_set(:@value, raw_value)
entry.instance_variable_set(:@created_at, created_at.to_f)
Expand Down

0 comments on commit 60e3e21

Please sign in to comment.