summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2011-07-11 16:27:24 +0100
committerSimon MacMullen <simon@rabbitmq.com>2011-07-11 16:27:24 +0100
commitce75f3bc26eb0d52f1a83431bbc5c71cae51cd08 (patch)
treed94aeaa41976a2bfa4cd02c56bd86cf55359792e /src
parent2e9d93e50947ac2b430fb98ff86ba66682997949 (diff)
downloadrabbitmq-server-git-ce75f3bc26eb0d52f1a83431bbc5c71cae51cd08.tar.gz
We like a lot of things about OTP. But not tabs.
Diffstat (limited to 'src')
-rw-r--r--src/mirrored_supervisor.erl10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mirrored_supervisor.erl b/src/mirrored_supervisor.erl
index 6a4304cb49..97a68e9608 100644
--- a/src/mirrored_supervisor.erl
+++ b/src/mirrored_supervisor.erl
@@ -110,9 +110,9 @@
-define(TABLE_MATCH, {match, #mirrored_sup_childspec{ _ = '_' }}).
-export([start_link/3, start_link/4,
- start_child/2, restart_child/2,
- delete_child/2, terminate_child/2,
- which_children/1, check_childspecs/1]).
+ start_child/2, restart_child/2,
+ delete_child/2, terminate_child/2,
+ which_children/1, check_childspecs/1]).
-export([behaviour_info/1]).
@@ -159,10 +159,10 @@
-type startlink_ret() :: {'ok', pid()} | 'ignore' | {'error', startlink_err()}.
-type startchild_err() :: 'already_present'
- | {'already_started', Child :: child()} | term().
+ | {'already_started', Child :: child()} | term().
-type startchild_ret() :: {'ok', Child :: child()}
| {'ok', Child :: child(), Info :: term()}
- | {'error', startchild_err()}.
+ | {'error', startchild_err()}.
-type group_name() :: any().