From abf8291058fc776fd8452911f2127c35d4a12e4e Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Wed, 9 Jul 2014 01:30:45 -0400 Subject: [PATCH] Fix monad behaviour callback --- src/monad.lfe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/monad.lfe b/src/monad.lfe index 291ec8f..179470f 100644 --- a/src/monad.lfe +++ b/src/monad.lfe @@ -1,8 +1,8 @@ (defmodule monad - (export (behaviour-info 1) + (export (behaviour_info 1) (do-transform 2))) -(defun behaviour-info +(defun behaviour_info (('callbacks) (list #(>>= 2) #(return 1) #(fail 1)))