You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/08/01 11:10:10 UTC

[14/35] git commit: Fix the behaviour_info callback

Fix the behaviour_info callback


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch-event/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch-event/commit/34aeaeeb
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch-event/tree/34aeaeeb
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch-event/diff/34aeaeeb

Branch: refs/heads/windsor-merge
Commit: 34aeaeeb3669611285ce7c39d19414c1d8aedf06
Parents: 81835ba
Author: Paul J. Davis <pa...@gmail.com>
Authored: Wed Apr 24 14:10:06 2013 -0500
Committer: Robert Newson <rn...@apache.org>
Committed: Wed Jul 30 17:41:11 2014 +0100

----------------------------------------------------------------------
 src/couch_event_listener.erl | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch-event/blob/34aeaeeb/src/couch_event_listener.erl
----------------------------------------------------------------------
diff --git a/src/couch_event_listener.erl b/src/couch_event_listener.erl
index 94bb133..ac8114e 100644
--- a/src/couch_event_listener.erl
+++ b/src/couch_event_listener.erl
@@ -41,10 +41,10 @@
 behaviour_info(callbacks) ->
     [
         {init,1},
-        {terminate/2},
-        {handle_cast/2},
-        {handle_event/2},
-        {handle_info/2}
+        {terminate,2},
+        {handle_cast,2},
+        {handle_event,2},
+        {handle_info,2}
     ];
 behaviour_info(_) ->
     undefined.