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

fix warning about splat

This commit is contained in:
robert 2017-06-04 22:28:25 +01:00
parent 3ce1fb9bb7
commit 819d4c1bb6

View file

@ -17,7 +17,7 @@ class Pry
instance_variable_get(target).__send__(private_delegate, *a, &b)
end
end
class_eval { private *private_delegates }
class_eval { private(*private_delegates) }
end
end
end