diff --git a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-access.wiki b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-access.wiki
index 5b5b1da4..bc536124 100644
--- a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-access.wiki
+++ b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-access.wiki
@@ -19,7 +19,7 @@ ISE Eiffel 4.1 and later.
{{SeeAlso|
-[[Reference for `eif_wean']]
+[[eif_wean]]
[[eif_adopt]]
[[eif_protect]] }}
diff --git a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-adopt.wiki b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-adopt.wiki
index 8e6cc092..728789b8 100644
--- a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-adopt.wiki
+++ b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-adopt.wiki
@@ -21,6 +21,6 @@ ISE Eiffel 4.1 and later.
{{SeeAlso|
[[eif_access]]
[[eif_protect]]
-[[Reference for `eif_wean']] }}
+[[eif_wean]] }}
diff --git a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-create.wiki b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-create.wiki
index 2721f3d6..bf55d814 100644
--- a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-create.wiki
+++ b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-create.wiki
@@ -1,23 +1,30 @@
[[Property:title|eif_create]]
[[Property:weight|-7]]
[[Property:uuid|b928f4b9-2830-5723-6f02-57eac618b116]]
-==SYNOPSYS==
-
-'''#include "eif_cecil. h"'''
+==Synopsis==
+
+#include "eif_cecil. h"
-'''EIF_OBJECT eif_create (EIF_TYPE_ID''' ''tid''''');'''
+EIF_OBJECT eif_create (EIF_TYPE_ID tid);
+
-==DESCRIPTION==
-The '''eif_create()''' function creates an Eiffel object, which type identifier is ''tid''.
-==RETURN VALUE==
+==Description==
+The eif_create function creates an Eiffel object, which type identifier is tid.
+==Return value==
It returns an Eiffel object, which is already protected.
-==NOTES==
-You cannot pass the return value to Eiffel routines as is: you must call '''eif_access()''' to pass it to Eiffel routine.
-To release the protection of an Eiffel object created with '''eif_create()''', call '''eif_wean()'''. It will be collected during the next collection.
-==CONFORMANCE==
+==Notes==
+You cannot pass the return value to Eiffel routines as is: you must call [[eif_access]] to pass it to Eiffel routine.
+
+To release the protection of an Eiffel object created with eif_create, call [[eif_wean]]. It will be collected during the next collection.
+
+==Conformance==
+
ISE Eiffel 4.1 and later.
-==SEE ALSO==
-'''eif_wean'''(1) , '''eif_type_id'''(1).
+
+
+{{SeeAlso|
+[[eif_wean]]
+[[eif_type_id]] }}