From 9f3c52d9dc5c18ed14c379bcf582d13098f9dc9a Mon Sep 17 00:00:00 2001 From: eiffel-org Date: Mon, 30 Apr 2018 13:20:10 +0000 Subject: [PATCH] Update wikipage Iterating on a LIST. (Signed-off-by:tioui). git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@2013 abb3cda0-5349-4a8f-a601-0c33ac3a8c38 --- .../eiffel/Tutorials/Mini-HowTo/Iterating-on-a-LIST.wiki | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/18.01/eiffel/Tutorials/Mini-HowTo/Iterating-on-a-LIST.wiki b/documentation/18.01/eiffel/Tutorials/Mini-HowTo/Iterating-on-a-LIST.wiki index 8b19edd3..fec26369 100644 --- a/documentation/18.01/eiffel/Tutorials/Mini-HowTo/Iterating-on-a-LIST.wiki +++ b/documentation/18.01/eiffel/Tutorials/Mini-HowTo/Iterating-on-a-LIST.wiki @@ -15,9 +15,9 @@ The first it the across loop. The across can be used o end -Note that the temporary variable (la_list in the example) represent an iterator of the ITERABLE object, and not directly an element like in many other language (like the for structure in Python for example). +Note that the temporary variable (la_list in the example) represent an iterator of the ITERABLE object, and not directly an element like in many other languages (like the for structure in Python for example). -The other mecanism use the from until loop syntax. This syntax offer more possibilities that the across loop, but is more risky. +The other mechanism uses the from until loop syntax. This syntax offer more possibilities than the across loop, but is riskier. print_elements(a_list:LIST[INTEGER])