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

Remove nodoc from FlashHash #[]= [ci skip]

This commit is contained in:
Pablo Torres 2012-12-01 22:05:22 -05:00
parent b1e2d7b968
commit a39ab3a57d

View file

@ -105,7 +105,7 @@ module ActionDispatch
super
end
def []=(k, v) #:nodoc:
def []=(k, v)
@discard.delete k
@flashes[k] = v
end