summaryrefslogtreecommitdiff
path: root/priv/templates/app.erl
diff options
context:
space:
mode:
authoromarkj <omarkj@gmail.com>2015-05-13 16:43:53 -0700
committeromarkj <omarkj@gmail.com>2015-05-13 16:43:53 -0700
commitfe19e4f891db3807cb289ff50f8b29a9fa1487e3 (patch)
treee0a6f83c045aed14c9bd94c61f95d33741a4a39e /priv/templates/app.erl
parent192e85aafa366a014600b6989480fa0b612b0408 (diff)
Quote atoms to allow names to have dashes.
Diffstat (limited to 'priv/templates/app.erl')
-rw-r--r--priv/templates/app.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/priv/templates/app.erl b/priv/templates/app.erl
index 83eb9a3..2e7b909 100644
--- a/priv/templates/app.erl
+++ b/priv/templates/app.erl
@@ -3,7 +3,7 @@
%% @end
%%%-------------------------------------------------------------------
--module({{name}}_app).
+-module('{{name}}_app').
-behaviour(application).
@@ -16,7 +16,7 @@
%%====================================================================
start(_StartType, _StartArgs) ->
- {{name}}_sup:start_link().
+ '{{name}}_sup':start_link().
%%--------------------------------------------------------------------
stop(_State) ->