Remove old comment on vbox driver disk method

This commit is contained in:
Brian Cain 2020-01-28 13:19:22 -08:00
parent 4394962f56
commit b2a89f8711
No known key found for this signature in database
GPG Key ID: 9FC4639B2E4510A0

View File

@ -104,11 +104,8 @@ module VagrantPlugins
# Creates a disk. Default format is VDI unless overridden
#
# Note: disk_size must be divisible by 512 bytes, otherwise operation will fail
# Source: https://www.virtualbox.org/ticket/5582
#
# @param [String] disk_file
# @param [Integer] disk_size - size in bytes (MUST BE DIVISIBLE BY 512 bytes)
# @param [Integer] disk_size - size in bytes
# @param [String] disk_format - format of disk, defaults to "VDI"
# @param [Hash] opts - additional options
def create_disk(disk_file, disk_size, disk_format="VDI", **opts)