fix warning about splat

This commit is contained in:
robert 2017-06-04 22:28:25 +01:00
parent 3ce1fb9bb7
commit 819d4c1bb6
1 changed files with 1 additions and 1 deletions

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