diff --git a/documentation/current/platform-specifics/microsoft-windows/com/eiffelcom-wizard/com-and-eiffel/com-interfaces.wiki b/documentation/current/platform-specifics/microsoft-windows/com/eiffelcom-wizard/com-and-eiffel/com-interfaces.wiki
index e0dd4e4f..50ae839f 100644
--- a/documentation/current/platform-specifics/microsoft-windows/com/eiffelcom-wizard/com-and-eiffel/com-interfaces.wiki
+++ b/documentation/current/platform-specifics/microsoft-windows/com/eiffelcom-wizard/com-and-eiffel/com-interfaces.wiki
@@ -10,13 +10,13 @@ The COM specification requires that any interface provide access to all interfac
The two other functions exposed by '''IUnknown''' are '''AddRef''' and '''Release'''. These functions should be called respectively when a client gets a reference on an interface or when it discards that reference. These two functions define the life-cycle of a component at runtime: each interface tracks clients by keeping a reference on each of them. When there are no client references anymore, the component can be unloaded from memory. You might worry that this business of reference counting will the source of problems such as memory leaks. You would be right, should you choose a low-level language in which to implement your components. Fortunately, you will never have to implement or use these functions in Eiffel: all the processing related to IUnknown is provided by the EiffelCOM runtime. Calls to '''QueryInterface''' are done "behind the scene" and only when needed. The component life-cycle is also taken care of by the EiffelCOM runtime.
{{seealso|
-[[EiffelCOM Library| EiffelCOM library]]
-[[EiffelCOM: Introduction| Introduction]]
-[[Generalities|Generalities]]
-[[Coclass| Coclasses]]
-[[The Component Location| Component Location]]
-[[Access Type| Access Type]]
-[[Deeper into COM| Deeper into COM]] }}
+[[EiffelCOM Library|EiffelCOM library]]
+[[EiffelCOM: Introduction|Introduction]]
+[[COM Concepts|COM Concepts]]
+[[Coclass|Coclasses]]
+[[The Component Location|Component Location]]
+[[Access Type|Access Type]]
+[[Deeper into COM|Deeper into COM]] }}