From 07331bba6d2c947d4cfd257fd0c4276aacb6f6b1 Mon Sep 17 00:00:00 2001 From: Alex Jia Date: Thu, 8 Sep 2011 11:11:27 +0800 Subject: [PATCH] virsh: fix typo in opts_send_key * tools/virsh.c: millseconds should be milliseconds in opts_send_key. Signed-off-by: Alex Jia --- tools/virsh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/virsh.c b/tools/virsh.c index 0f00463569..cf3e81608b 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -4301,7 +4301,7 @@ static const vshCmdOptDef opts_send_key[] = { {"codeset", VSH_OT_STRING, VSH_OFLAG_REQ_OPT, N_("the codeset of keycodes, default:linux")}, {"holdtime", VSH_OT_INT, VSH_OFLAG_REQ_OPT, - N_("the time (in millseconds) how long the keys will be held")}, + N_("the time (in milliseconds) how long the keys will be held")}, {"keycode", VSH_OT_ARGV, VSH_OFLAG_REQ, N_("the key code")}, {NULL, 0, 0, NULL} };