spell complaint properly
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 9 Apr 2012 03:43:45 +0000 (03:43 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 9 Apr 2012 03:43:45 +0000 (03:43 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@69959 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/canvas/evas_object_main.c

index 48e97de..a0b9ad7 100644 (file)
@@ -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;