diff --git a/documentation/current/solutions/database-access/eiffelstore/eiffelstore-tutorial/eiffelstore-interface-layer/database-connection.wiki b/documentation/current/solutions/database-access/eiffelstore/eiffelstore-tutorial/eiffelstore-interface-layer/database-connection.wiki
index b996cc3f..d2f07d4d 100644
--- a/documentation/current/solutions/database-access/eiffelstore/eiffelstore-tutorial/eiffelstore-interface-layer/database-connection.wiki
+++ b/documentation/current/solutions/database-access/eiffelstore/eiffelstore-tutorial/eiffelstore-interface-layer/database-connection.wiki
@@ -3,11 +3,13 @@
[[Property:uuid|2cf2cb7c-e28d-5d06-b03e-e2b17c1f6879]]
* To connect to your database, you have to create a '''handle''': this handle actually links the interface classes with corresponding implementation classes mapped to your DBMS. This handle is implemented by the DATABASE_APPL class:
- database_appl: DATABASE_APPL [ODBC]
- -- Database handle.
- ...
- create database_appl.login (a_name, a_psswd)
- database_appl.set_base
+ database_appl: DATABASE_APPL [ODBC]
+ -- Database handle.
+
+ ...
+
+ create database_appl.login (a_name, a_psswd)
+ database_appl.set_base
@@ -20,11 +22,13 @@
* Once your handle is created, you have to create a session manager which will allow you to manage your database, specifically to establish connection, disconnect and also handle errors. The class DB_CONTROL enables your application to plainly control the functioning and status of your database and to request any information about it.
- session_control: DB_CONTROL
- -- Session control.
- ...
- create session_control.make
- session_control.connect
+ session_control: DB_CONTROL
+ -- Session control.
+
+ ...
+
+ create session_control.make
+ session_control.connect
{{note|Take a look at the [[Database control|database control]] part to see how to use DB_CONTROL capabilities. }}
diff --git a/documentation/current/why-eiffel/index.wiki b/documentation/current/why-eiffel/index.wiki
index 7984d5e1..f2619194 100644
--- a/documentation/current/why-eiffel/index.wiki
+++ b/documentation/current/why-eiffel/index.wiki
@@ -1,7 +1,7 @@
[[Property:title|Why Eiffel?]]
[[Property:weight|-1]]
[[Property:uuid|df007537-c0dd-2ea6-233b-764ad483eb65]]
-This book contains some of the arguments for using Eiffel.
+This book collects arguments for using Eiffel.
Even though we in the Eiffel community know that Eiffel is the most advanced object-oriented software development framework on this planet, that fact may not be so obvious to everyone else. Consequently, we felt that it would be helpful to provide some brief documents that spell out the reasons why the people who have chosen Eiffel have been so successful.