Parallels provider: fix typos

This commit is contained in:
Mikhail Zholobov 2014-05-02 00:58:17 +04:00
parent 3a68c8aaef
commit c1510d2b50
3 changed files with 3 additions and 3 deletions

View File

@ -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"`
}

View File

@ -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")
}
}

View File

@ -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)
}