doxygen docs: Fix some more invalid commands
authorXavi Artigas <xavierartigas@yahoo.es>
Thu, 12 Mar 2020 10:02:11 +0000 (11:02 +0100)
committerJongmin Lee <jm105.lee@samsung.com>
Fri, 13 Mar 2020 00:18:36 +0000 (09:18 +0900)
src/lib/evas/canvas/evas_canvas_eo.h
src/lib/evas/filters/evas_filter_parser.c

index 938d59f..74cd5ef 100644 (file)
@@ -808,7 +808,7 @@ EOAPI int evas_canvas_coord_world_x_to_screen(const Eo *obj, int x) EINA_WARN_UN
  * @param[in] obj The object.
  *
  * @return A newly allocated list of updated rectangles of the canvas
- * (@Eina.Rect structs). Free this list with @ref evas_render_updates_free.
+ * (@ref Eina_Rect structs). Free this list with @ref evas_render_updates_free.
  *
  * @ingroup Evas_Canvas
  */
index 38d6822..43fd1d1 100644 (file)
@@ -60,7 +60,7 @@
   as possible.
 
   Note: Lua has been used since 1.10. The previous filters syntax is not
-        garanteed to be compatible with 1.10 and newer versions.
+        guaranteed to be compatible with 1.10 and newer versions.
 
   Here are the available commands:
   <ul>
           will be opaque (alpha = @c 0xFF), unless R=G=B=0 (invisible).
           These colors are <b>not</b> premultiplied.
       </li>
-      <li>Hexademical values: @c '#RRGGBB', @c '#RRGGBBAA', @c '#RGB', @c '#RGBA'</li>
+      <li>Hexadecimal values: @c '\#RRGGBB', @c '\#RRGGBBAA', @c '\#RGB', @c '\#RGBA'</li>
       <li>The following string values are also accepted:</li>
       <tt><ul>
-        <li>'white' == '#FFFFFF'</li>
-        <li>'black' == '#000000'</li>
-        <li>'red' == '#FF0000'</li>
-        <li>'green' == '#008000'</li>
-        <li>'blue' == '#0000FF'</li>
-        <li>'darkblue' == '#0000A0'</li>
-        <li>'yellow' == '#FFFF00'</li>
-        <li>'magenta' == '#FF00FF'</li>
-        <li>'cyan' == '#00FFFF'</li>
-        <li>'orange' == '#FFA500'</li>
-        <li>'purple' == '#800080'</li>
-        <li>'brown' == '#A52A2A'</li>
-        <li>'maroon' == '#800000'</li>
-        <li>'lime' == '#00FF00'</li>
-        <li>'gray' == '#808080'</li>
-        <li>'grey' == '#808080'</li>
-        <li>'silver' == '#C0C0C0'</li>
-        <li>'olive' == '#808000'</li>
-        <li>'invisible', 'transparent' == '#0000' -- (alpha is zero)</li>
+        <li>'white' == '\#FFFFFF'</li>
+        <li>'black' == '\#000000'</li>
+        <li>'red' == '\#FF0000'</li>
+        <li>'green' == '\#008000'</li>
+        <li>'blue' == '\#0000FF'</li>
+        <li>'darkblue' == '\#0000A0'</li>
+        <li>'yellow' == '\#FFFF00'</li>
+        <li>'magenta' == '\#FF00FF'</li>
+        <li>'cyan' == '\#00FFFF'</li>
+        <li>'orange' == '\#FFA500'</li>
+        <li>'purple' == '\#800080'</li>
+        <li>'brown' == '\#A52A2A'</li>
+        <li>'maroon' == '\#800000'</li>
+        <li>'lime' == '\#00FF00'</li>
+        <li>'gray' == '\#808080'</li>
+        <li>'grey' == '\#808080'</li>
+        <li>'silver' == '\#C0C0C0'</li>
+        <li>'olive' == '\#808000'</li>
+        <li>'invisible', 'transparent' == '\#0000' -- (alpha is zero)</li>
       </ul></tt>
     </ul>
     <li>@c fillmode</li>