Rewording and reformatting plaintext

Is this rewording unwieldy?
This commit is contained in:
rubberduckdev 2014-01-17 18:20:41 +02:00
parent cd66f18e2e
commit d273ad112f

View File

@ -548,8 +548,10 @@ for
------- -------
`for` is used to call a function for each element in a list or vector. `for` is used to call a function for each element in a list or vector.
The results of each call are discarded and the for expression returns None instead. Example code iterates over The results of each call are discarded and the for expression returns
collection and calls side-effect to each element in the collection: None instead. The example code iterates over `collection` and
for each `element` in `collection` calls the `side-effect`
function with `element` as its argument:
.. code-block:: clj .. code-block:: clj