summaryrefslogtreecommitdiff
path: root/src/dreyfus/src/dreyfus_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/dreyfus/src/dreyfus_sup.erl')
-rw-r--r--src/dreyfus/src/dreyfus_sup.erl4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/dreyfus/src/dreyfus_sup.erl b/src/dreyfus/src/dreyfus_sup.erl
index d855a822e..e19203af2 100644
--- a/src/dreyfus/src/dreyfus_sup.erl
+++ b/src/dreyfus/src/dreyfus_sup.erl
@@ -10,7 +10,6 @@
% License for the specific language governing permissions and limitations under
% the License.
-
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
-module(dreyfus_sup).
@@ -25,8 +24,7 @@ init(_Args) ->
Children = [
child(dreyfus_index_manager)
],
- {ok, {{one_for_one,10,1},
- couch_epi:register_service(dreyfus_epi, Children)}}.
+ {ok, {{one_for_one, 10, 1}, couch_epi:register_service(dreyfus_epi, Children)}}.
child(Child) ->
{Child, {Child, start_link, []}, permanent, 1000, worker, [Child]}.