summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorXavi Artigas <xavierartigas@yahoo.es>2020-03-12 13:52:42 +0100
committerXavi Artigas <xavierartigas@yahoo.es>2020-03-12 17:24:07 +0100
commita004befea51e82899654cb583e03108c29a169a2 (patch)
tree2b5e1543e36fb80c89987834a76f686adb326595 /doc
parent500b9f611ba17724b041771c2d028de9dfa92e23 (diff)
downloadefl-a004befea51e82899654cb583e03108c29a169a2.tar.gz
doxygen docs: Fix illegal references
Mostly typos and unescaped # signs
Diffstat (limited to 'doc')
-rw-r--r--doc/eo_tutorial.dox4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/eo_tutorial.dox b/doc/eo_tutorial.dox
index d8e7d7fb8d..baeb10d857 100644
--- a/doc/eo_tutorial.dox
+++ b/doc/eo_tutorial.dox
@@ -120,11 +120,11 @@
*
* @section create_class_h_side How to create a class - H side?
* - If the object is new, establish the public APIs
- * - #define \$(CLASS_NAME) \$(class_name)_class_get(): will be used to access data/inherit from this class...
+ * - \#define \$(CLASS_NAME) \$(class_name)_class_get(): will be used to access data/inherit from this class...
* - const Eo_Class *\$(class_name)_class_get(void) EINA_CONST: declaration of the function that will create the class (not the instance), i.e virtual table...
* - extern EAPI Eo_Op \$(CLASS_NAME)_BASE_ID: class id that will be essentially used to identify functions set of this class
* - enum of the function ids of the class in the form \$(CLASS_NAME)_SUB_ID: used to identify the function inside the class; function id is unique per class but (class id, function id) is unique per system..
- * - #define \$(CLASS_NAME)_ID(sub_id) (\$(CLASS_NAME)_BASE_ID + sub_id): formula to calculate the system function id
+ * - \#define \$(CLASS_NAME)_ID(sub_id) (\$(CLASS_NAME)_BASE_ID + sub_id): formula to calculate the system function id
* - define of each function consists of:
* - the name of the function that will be used in eo_do
* - parameters without types