spelling: multiples

This commit is contained in:
Josh Soref 2018-03-13 08:12:53 +00:00
parent abb2faf677
commit d987fcefc3
1 changed files with 2 additions and 2 deletions

View File

@ -44,14 +44,14 @@ func EncodeVMX(contents map[string]string) string {
}
// a list of VMX key fragments that the value must not be quoted
// fragments are used to cover multliples (i.e. multiple disks)
// fragments are used to cover multiples (i.e. multiple disks)
// keys are still lowercase at this point, use lower fragments
noQuotes := []string{
".virtualssd",
}
// a list of VMX key fragments that are case sensitive
// fragments are used to cover multliples (i.e. multiple disks)
// fragments are used to cover multiples (i.e. multiple disks)
caseSensitive := []string{
".virtualSSD",
}