diff --git a/documentation/19.05/eiffel/Tutorials/eiffel-tutorial-et/et-instructions.wiki b/documentation/19.05/eiffel/Tutorials/eiffel-tutorial-et/et-instructions.wiki
index a9c79262..65b4a617 100644
--- a/documentation/19.05/eiffel/Tutorials/eiffel-tutorial-et/et-instructions.wiki
+++ b/documentation/19.05/eiffel/Tutorials/eiffel-tutorial-et/et-instructions.wiki
@@ -1,3 +1,5 @@
+[[Property:modification_date|Tue, 10 Sep 2019 21:54:55 GMT]]
+[[Property:publication_date|Tue, 10 Sep 2019 21:54:55 GMT]]
[[Property:title|ET: Instructions]]
[[Property:weight|-6]]
[[Property:uuid|628bf3db-728f-0b3c-bdbb-fe52deaae5b7]]
@@ -104,11 +106,7 @@ Here's one example:
and the other:
- across
- my_list as ic
- loop
- print (ic.item)
- end
+ across my_list as ic loop print (ic.item) end
''Loop example 2.''
@@ -117,14 +115,8 @@ At first observation, it may not appear that both of these examples are using th
Incidentally, there is no requirement that ''Loop example 1'' occupy multiple lines, and ''Loop example 2'' occupy only one line. ''Loop example 1'' could have been written like this:
- from
- my_list.start
- until
- my_list.off
- loop
- print (my_list.item)
- my_list.forth
- end
+ from my_list.start until my_list.off
+ loop print (my_list.item) my_list.forth end
just as ''Loop example 2'' could have been written to take multiple lines. It comes down to a matter of balance among traditional style, conciseness, and readability.