mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
fix variable name typo
This commit is contained in:
parent
bb02fb46e3
commit
d2a1fc585d
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ module Fog
|
||||||
raise Fog::Compute::AWS::Error.new("You may specify secondaryPrivateIpAddressCount or specific secondary private IP addresses, but not both.")
|
raise Fog::Compute::AWS::Error.new("You may specify secondaryPrivateIpAddressCount or specific secondary private IP addresses, but not both.")
|
||||||
end
|
end
|
||||||
|
|
||||||
if private_ip_address = options.delete('PrivateIpAddresses')
|
if private_ip_addresses = options.delete('PrivateIpAddresses')
|
||||||
options.merge!(Fog::AWS.indexed_param('PrivateIpAddress.%d', [*private_ip_addresses]))
|
options.merge!(Fog::AWS.indexed_param('PrivateIpAddress.%d', [*private_ip_addresses]))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue