mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Correct the parameter name for deserialize
deserialize expects a JSON primitive
This commit is contained in:
parent
ec69083cf3
commit
6852a53821
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ module ActiveJob
|
|||
end
|
||||
|
||||
# Deserializes an argument from a JSON primitive type.
|
||||
def deserialize(_argument)
|
||||
def deserialize(json)
|
||||
raise NotImplementedError
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue