diff --git a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-disable-visible-exception.wiki b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-disable-visible-exception.wiki
index 6e783e2a..496c2632 100644
--- a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-disable-visible-exception.wiki
+++ b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-disable-visible-exception.wiki
@@ -10,7 +10,7 @@ void eif_disable_visible_exception ();
==Description==
-The eif_enable_visble_exception routine enables the visible exception, while [[eif_disable_visible_exception]] disables it. These routines can be used for debugging purpose. A visible exception is raised when the user tries to access to an Eiffel attribute or a Eiffel routine address which is not visible.
+The [[eif_enable_visible_exception]] routine enables the visible exception, while [[eif_disable_visible_exception]] disables it. These routines can be used for debugging purpose. A visible exception is raised when the user tries to access to an Eiffel attribute or a Eiffel routine address which is not visible.
The visible exception is disabled by default.
diff --git a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-enable-visible-exception.wiki b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-enable-visible-exception.wiki
index 1b1b7d85..6478d0ba 100644
--- a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-enable-visible-exception.wiki
+++ b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-enable-visible-exception.wiki
@@ -10,7 +10,7 @@ void eif_disable_visible_exception ();
==Description==
-The eif_enable_visble_exception routine enables the visible exception, while [[eif_disable_visible_exception]] disables it. These routines can be used for debugging purpose. A visible exception is raised when the user tries to access to an Eiffel attribute or a Eiffel routine address which is not visible.
+The [[eif_enable_visible_exception]] routine enables the visible exception, while [[eif_disable_visible_exception]] disables it. These routines can be used for debugging purpose. A visible exception is raised when the user tries to access to an Eiffel attribute or a Eiffel routine address which is not visible.
The visible exception is disabled by default.
diff --git a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-name.wiki b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-name.wiki
index b820a069..9a1210ba 100644
--- a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-name.wiki
+++ b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-name.wiki
@@ -1,22 +1,35 @@
[[Property:title|eif_name]]
[[Property:weight|-2]]
[[Property:uuid|2921b2ef-1f59-cd26-df50-5cb946eae84c]]
-==SYNOPSYS==
-
-'''#include "eif_cecil.h"
+==Synopsis==
+
+#include "eif_cecil.h"
-char *eif_name (EIF_TYPE_ID '''''tid''''');'''
+char *eif_name (EIF_TYPE_ID tid);
+
+
+==Description==
+
+The eif_name function returns the name of the class corresponding to tid.
+
+==Return value==
+
+A statically allocated C string which is the name of the class. If tid is invalid, it returns NULL.
+
+==Conformance==
-==DESCRIPTION==
-The '''eif_name()''' function returns the name of the class corresponding to ''tid''.
-==RETURN VALUE==
-A statically allocated C string which is the name of the class. If ''tid'' is invalid, it returns NULL.
-==CONFORMANCE==
ISE Eiffel 4.4 and later.
-==COMPATIBILITY==
-'''eif_name()''' is equivalent to '''eif_name_by_tid()'''.
-==SEE ALSO==
-'''eif_type'''(1) , '''eif_type_by_reference'''(1), '''eif_type_id'''(1).
+
+==Compatibility==
+
+eif_name is equivalent to eif_name_by_tid.
+
+
+{{SeeAlso|
+[[eif_type]]
+[[eif_type_by_reference]]
+[[eif_type_id]] }}
+