[client] config: fix spelling of synchronize

This commit is contained in:
Quantum 2021-09-01 19:26:48 -04:00 committed by Geoffrey McRae
parent 94d7ed300e
commit 92155de98d

View file

@ -410,21 +410,21 @@ static struct Option options[] =
{ {
.module = "spice", .module = "spice",
.name = "clipboard", .name = "clipboard",
.description = "Use SPICE to syncronize the clipboard contents with the guest", .description = "Use SPICE to synchronize the clipboard contents with the guest",
.type = OPTION_TYPE_BOOL, .type = OPTION_TYPE_BOOL,
.value.x_bool = true .value.x_bool = true
}, },
{ {
.module = "spice", .module = "spice",
.name = "clipboardToVM", .name = "clipboardToVM",
.description = "Allow the clipboard to be syncronized TO the VM", .description = "Allow the clipboard to be synchronized TO the VM",
.type = OPTION_TYPE_BOOL, .type = OPTION_TYPE_BOOL,
.value.x_bool = true .value.x_bool = true
}, },
{ {
.module = "spice", .module = "spice",
.name = "clipboardToLocal", .name = "clipboardToLocal",
.description = "Allow the clipboard to be syncronized FROM the VM", .description = "Allow the clipboard to be synchronized FROM the VM",
.type = OPTION_TYPE_BOOL, .type = OPTION_TYPE_BOOL,
.value.x_bool = true .value.x_bool = true
}, },