From d273ad112f795b79d11879b7189a0600aba84d71 Mon Sep 17 00:00:00 2001 From: rubberduckdev Date: Fri, 17 Jan 2014 18:20:41 +0200 Subject: [PATCH] Rewording and reformatting plaintext Is this rewording unwieldy? --- docs/language/api.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/language/api.rst b/docs/language/api.rst index 902dd92..7e06579 100644 --- a/docs/language/api.rst +++ b/docs/language/api.rst @@ -548,8 +548,10 @@ for ------- `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 -collection and calls side-effect to each element in the collection: +The results of each call are discarded and the for expression returns +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