* muile: README: it's for-each, not foreach

This commit is contained in:
Dirk-Jan C. Binnema 2011-07-23 08:49:28 +03:00
parent 88ffe5f309
commit 0ce9f78ed8
1 changed files with 2 additions and 2 deletions

View File

@ -85,13 +85,13 @@
sender for messages about milk:
,----
| (mu:store:foreach (lambda(msg) (format #t "~s ~s\n" (mu:msg:from msg) (mu:msg:subject msg))) "milk")
| (mu:store:for-each (lambda(msg) (format #t "~s ~s\n" (mu:msg:from msg) (mu:msg:subject msg))) "milk")
`----
or slightly more readable:
,----
| (mu:store:foreach
| (mu:store:for-each
| (lambda(msg)
| (format #t "~s ~s\n" (mu:msg:from msg) (mu:msg:subject msg)))
| "milk")