From 7d5c1fc12e8a40af3c30c3deb2abeb7c499d1cbf Mon Sep 17 00:00:00 2001 From: Catalin Cezar Ene Date: Thu, 14 Oct 2021 17:14:30 +0200 Subject: [PATCH] Fix for :dvd example in disks configuration docs. --- website/content/docs/disks/configuration.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/disks/configuration.mdx b/website/content/docs/disks/configuration.mdx index 3ad728853..c15adaf99 100644 --- a/website/content/docs/disks/configuration.mdx +++ b/website/content/docs/disks/configuration.mdx @@ -61,7 +61,7 @@ You can set a disk type with the first argument of a disk config in your Vagrant ```ruby config.vm.disk :disk, name: "backup", size: "10GB" -config.vm.disk :dvd, name: "installer", path: "./installer.iso" +config.vm.disk :dvd, name: "installer", file: "./installer.iso" config.vm.disk :floppy, name: "cool_files" ```