diff options
author | Tristan Sloughter <t@crashfast.com> | 2016-01-10 11:31:44 -0600 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2016-01-10 11:31:44 -0600 |
commit | 3f7370f5fb10239a1f9b2ebe9f443de26e55ba67 (patch) | |
tree | 211302c2e05ff5b446a717dc8c52d05c328b2113 /priv/templates/app.erl | |
parent | 495097d9ff6afaf48b850da9b2da0f2e48b1e115 (diff) | |
parent | 3d0aa5e84a2b2a7158f1e4b2070fecd130a3e2bc (diff) |
Merge pull request #1008 from ferd/unquote-templates
Unquote templates, add a warning instead.
Diffstat (limited to 'priv/templates/app.erl')
-rw-r--r-- | priv/templates/app.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/priv/templates/app.erl b/priv/templates/app.erl index 2e7b909..83eb9a3 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) -> |