From: raster Date: Mon, 9 Apr 2012 03:43:45 +0000 (+0000) Subject: spell complaint properly X-Git-Tag: submit/trunk/20120815.174732~430 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=99193e178dbc62bd007cbead13b7cd2cb9e91c33;p=profile%2Fivi%2Fevas.git spell complaint properly git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@69959 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/canvas/evas_object_main.c b/src/lib/canvas/evas_object_main.c index 48e97de..a0b9ad7 100644 --- a/src/lib/canvas/evas_object_main.c +++ b/src/lib/canvas/evas_object_main.c @@ -1052,17 +1052,17 @@ evas_object_color_set(Evas_Object *obj, int r, int g, int b, int a) if (r > a) { r = a; - ERR("Evas only handle pre multiplied color !"); + ERR("Evas only handles pre multiplied colors!"); } if (g > a) { g = a; - ERR("Evas only handle pre multiplied color !"); + ERR("Evas only handles pre multiplied colors!"); } if (b > a) { b = a; - ERR("Evas only handle pre multiplied color !"); + ERR("Evas only handles pre multiplied colors!"); } if (evas_object_intercept_call_color_set(obj, r, g, b, a)) return;