diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-12-05 23:05:13 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-12-05 23:05:13 +0100 |
commit | 14f550c31c1f9fb675c1bdb1ec7b70475d5d4942 (patch) | |
tree | e1ef45c81737ad969f80460f497aae4e2556cf80 /guix | |
parent | 76dcc993f762c8c3cbdf7dfa3f1d072e09ad427b (diff) | |
download | gnu-guix-14f550c31c1f9fb675c1bdb1ec7b70475d5d4942.tar gnu-guix-14f550c31c1f9fb675c1bdb1ec7b70475d5d4942.tar.gz |
monads: Remove erroneous comment.
* guix/monads.scm (sequence): Remove erroneous comment.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/monads.scm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/guix/monads.scm b/guix/monads.scm index c705d014ec..b62fc28a55 100644 --- a/guix/monads.scm +++ b/guix/monads.scm @@ -216,7 +216,6 @@ list." (define-inlinable (sequence monad lst) "Turn the list of monadic values LST into a monadic list of values, by evaluating each item of LST in sequence." - ;; FIXME: 'mapm' binds from right to left. (with-monad monad (mapm monad return lst))) |