summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavi Artigas <xavierartigas@yahoo.es>2020-03-12 11:02:11 +0100
committerXavi Artigas <xavierartigas@yahoo.es>2020-03-12 17:24:07 +0100
commit7273229e3c31dfde4ea64d2f0cc8cda4c8c53d2a (patch)
tree06d2dc7c969d685fcaa60004bcdd099f7846a5cb
parent47107a45ae6ab16850e744a401f1914ba2a8cbf4 (diff)
downloadefl-7273229e3c31dfde4ea64d2f0cc8cda4c8c53d2a.tar.gz
doxygen docs: Fix some more invalid commands
-rw-r--r--src/lib/evas/canvas/evas_canvas_eo.h2
-rw-r--r--src/lib/evas/filters/evas_filter_parser.c42
2 files changed, 22 insertions, 22 deletions
diff --git a/src/lib/evas/canvas/evas_canvas_eo.h b/src/lib/evas/canvas/evas_canvas_eo.h
index 938d59fcee..74cd5ef05c 100644
--- a/src/lib/evas/canvas/evas_canvas_eo.h
+++ b/src/lib/evas/canvas/evas_canvas_eo.h
@@ -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
*/
diff --git a/src/lib/evas/filters/evas_filter_parser.c b/src/lib/evas/filters/evas_filter_parser.c
index 38d68224d9..43fd1d17d4 100644
--- a/src/lib/evas/filters/evas_filter_parser.c
+++ b/src/lib/evas/filters/evas_filter_parser.c
@@ -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>
@@ -136,28 +136,28 @@
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>