Skip to content

Commit 60e3e21

Browse files
committed
a couple of spurious spaces I saw in passing
1 parent 4c872c0 commit 60e3e21

File tree

1 file changed

+2
-2
lines changed
  • activesupport/lib/active_support

1 file changed

+2
-2
lines changed

activesupport/lib/active_support/cache.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class Store
149149

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

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

0 commit comments

Comments
 (0)