From: Peng Wu Date: Wed, 3 Feb 2010 03:41:39 +0000 (+0800) Subject: fixes a typo. X-Git-Tag: 1.2.99.20100322~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43e5004f54dc4dc3e1b2cad4836eab0d8357501d;p=platform%2Fupstream%2Fibus.git fixes a typo. --- diff --git a/bus/ibusimpl.c b/bus/ibusimpl.c index 404975d3..9a59f7c7 100644 --- a/bus/ibusimpl.c +++ b/bus/ibusimpl.c @@ -945,13 +945,13 @@ _context_focus_in_cb (BusInputContext *context, g_assert (BUS_IS_IBUS_IMPL (ibus)); g_assert (BUS_IS_INPUT_CONTEXT (context)); - /* Do noting if context does not support focus. + /* Do nothing if context does not support focus. * The global engine shoule be detached from the focused context. */ if ((bus_input_context_get_capabilities (context) & IBUS_CAP_FOCUS) == 0) { return; } - /* Do noting if it is focused context already. */ + /* Do nothing if it is focused context already. */ if (ibus->focused_context == context) { return; }