diff options
author | Dave Smith <dizzyd@dizzyd.com> | 2010-01-09 06:23:35 -0700 |
---|---|---|
committer | Dave Smith <dizzyd@dizzyd.com> | 2010-01-09 06:23:35 -0700 |
commit | c6a0d44afae34c873a9fd5d26736613a561af1c9 (patch) | |
tree | 295b6d1f36e58e24fb0a7d3e051bb5859c3d7d1a /priv | |
parent | 407486bc62ac0d604bccf323bb4755e7a018a19d (diff) |
Fixing some typos in simpleapp template
Diffstat (limited to 'priv')
-rw-r--r-- | priv/templates/simpleapp.app | 1 | ||||
-rw-r--r-- | priv/templates/simpleapp_sup.erl | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/priv/templates/simpleapp.app b/priv/templates/simpleapp.app index 7638f51..ec30ffe 100644 --- a/priv/templates/simpleapp.app +++ b/priv/templates/simpleapp.app @@ -11,5 +11,6 @@ kernel, stdlib ]}, + {mod, { {{appid}}_app, []}}, {env, []} ]}. diff --git a/priv/templates/simpleapp_sup.erl b/priv/templates/simpleapp_sup.erl index 1dc178d..931db75 100644 --- a/priv/templates/simpleapp_sup.erl +++ b/priv/templates/simpleapp_sup.erl @@ -24,5 +24,5 @@ start_link() -> %% =================================================================== init([]) -> - {ok, {one_for_one, 5, 10}, []}. + {ok, { {one_for_one, 5, 10}, []} }. |