Explorar o código

update documentation

Vladislav Folts %!s(int64=9) %!d(string=hai) anos
pai
achega
ad060ee613
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      doc/wiki/eberon-FOR..IN.md

+ 2 - 2
doc/wiki/eberon-FOR..IN.md

@@ -1,4 +1,4 @@
-*FOR..IN* loop statement is used to iteratate through arrays and [[MAP|eberon-associative-arrays]]s. For arrays all elements are iterated from the beginning to the end.
+*FOR..IN* loop statement is used to iteratate through arrays, [[STRING|eberon-strings]]s and [[MAP|eberon-associative-arrays]]s. For arrays and strings all elements are iterated from the beginning to the end.
 
 ### Syntax
 
@@ -6,7 +6,7 @@
         ...
     END;
 
-_key_ is an optional variable standing for array's index (from 0 to LEN(_array_) - 1) or MAP's key. _key_ type is INTEGER for arrays and [[STRING|eberon-strings]] for [[MAP|eberon-associative-arrays]]s.
+_key_ is an optional variable standing for array/string's index (from 0 to LEN(_array_) - 1) or MAP's key. _key_ type is INTEGER for arrays and strings and [[STRING|eberon-strings]] for [[MAP|eberon-associative-arrays]]s.
 _value_ is a variable standing for element's value.
 These variables have no a separate declaration and their visibility scope is inside loop only. Also these variables are read-only - similar to non-VAR parameters.