From c1510d2b50bc612a9179beef5f83488eaa27f85c Mon Sep 17 00:00:00 2001 From: Mikhail Zholobov Date: Fri, 2 May 2014 00:58:17 +0400 Subject: [PATCH] Parallels provider: fix typos --- builder/parallels/common/floppy_config.go | 2 +- builder/parallels/common/step_attach_floppy_test.go | 2 +- builder/parallels/iso/host_ip.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builder/parallels/common/floppy_config.go b/builder/parallels/common/floppy_config.go index 35cd7aca4..5bcdd4b4a 100644 --- a/builder/parallels/common/floppy_config.go +++ b/builder/parallels/common/floppy_config.go @@ -7,7 +7,7 @@ import ( ) // FloppyConfig is configuration related to created floppy disks and attaching -// them to a VirtualBox machine. +// them to a Parallels virtual machine. type FloppyConfig struct { FloppyFiles []string `mapstructure:"floppy_files"` } diff --git a/builder/parallels/common/step_attach_floppy_test.go b/builder/parallels/common/step_attach_floppy_test.go index 2a4f8bf11..ab78025df 100644 --- a/builder/parallels/common/step_attach_floppy_test.go +++ b/builder/parallels/common/step_attach_floppy_test.go @@ -66,6 +66,6 @@ func TestStepAttachFloppy_noFloppy(t *testing.T) { } if len(driver.PrlctlCalls) > 0 { - t.Fatal("should not call vboxmanage") + t.Fatal("should not call prlctl") } } diff --git a/builder/parallels/iso/host_ip.go b/builder/parallels/iso/host_ip.go index 98a6d26df..12b3de6a2 100644 --- a/builder/parallels/iso/host_ip.go +++ b/builder/parallels/iso/host_ip.go @@ -1,7 +1,7 @@ package iso // Interface to help find the host IP that is available from within -// the VMware virtual machines. +// the Parallels virtual machines. type HostIPFinder interface { HostIP() (string, error) }