Use proper command reference for command whitelist params

This commit is contained in:
Brian Cain 2018-03-08 16:00:51 -08:00
parent 0142722787
commit 01b904061d
No known key found for this signature in database
GPG Key ID: 43D51080D357A001
1 changed files with 2 additions and 2 deletions

View File

@ -63,12 +63,12 @@ module VagrantPlugins
# @param [Array, Symbol] command Vagrant command to create trigger on
# @param [Block] block The defined after block
def before(**command, &block)
def before(*command, &block)
end
# @param [Array, Symbol] command Vagrant command to create trigger on
# @param [Block] block The defined after block
def after(**command, &block)
def after(*command, &block)
end
# @param [Array, Symbol] command Vagrant command to create trigger on