diff --git a/documentation/trunk/eiffelstudio/eiffelstudio-reference/eiffelstudio-editor/Code-Templates.wiki b/documentation/trunk/eiffelstudio/eiffelstudio-reference/eiffelstudio-editor/Code-Templates.wiki
index 132a5836..c72c7a09 100644
--- a/documentation/trunk/eiffelstudio/eiffelstudio-reference/eiffelstudio-editor/Code-Templates.wiki
+++ b/documentation/trunk/eiffelstudio/eiffelstudio-reference/eiffelstudio-editor/Code-Templates.wiki
@@ -18,14 +18,14 @@ User defined templates will have precedence over templates located at the Eiffel
==Templates Definition==
-* Every template should inherit from a TEMPLATE class
+* Every template should inherit from the TEMPLATE class
class ARRAY_TEMPLATE [T -> COMPARABLE] inherIt TEMPLATE [ARRAY [T]]
* Multiple Generic Constraints is not supported
class EXAMPLE_TEMPLATE [T -> {TYPE_1, TYPE_2}]
- * A file could have multiple code templates definitions
- ** Queries
- ** Commands
-Code templates could be Global or applicable to a given Context
+* A file could have multiple code templates definitions.
+ * Queries
+ * Commands
+* Code templates could be Global/Target-less or applicable to a given Context
Queries and Commands accept multiple arguments like (a:T1; b:T2; c:T3), if any, will be used as input arguments where the default values will be filled with defaults if they exist.
Target Templates
Inherit from TEMPLATE [T]