diff options
Diffstat (limited to 'priv/templates/app.erl.dtl')
-rw-r--r-- | priv/templates/app.erl.dtl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/priv/templates/app.erl.dtl b/priv/templates/app.erl.dtl index 1c3e8f2..83eb9a3 100644 --- a/priv/templates/app.erl.dtl +++ b/priv/templates/app.erl.dtl @@ -1,9 +1,9 @@ %%%------------------------------------------------------------------- -%% @doc {{appid}} public API +%% @doc {{name}} public API %% @end %%%------------------------------------------------------------------- --module({{appid}}_app). +-module({{name}}_app). -behaviour(application). @@ -16,7 +16,7 @@ %%==================================================================== start(_StartType, _StartArgs) -> - {{appid}}_sup:start_link(). + {{name}}_sup:start_link(). %%-------------------------------------------------------------------- stop(_State) -> |