diff options
author | Sergey Abramyan <sa.abramyan@gmail.com> | 2015-05-11 16:45:34 +0300 |
---|---|---|
committer | Sergey Abramyan <sa.abramyan@gmail.com> | 2015-05-11 16:45:34 +0300 |
commit | 84775fbcfa2713e6ffa24161c4c70a9cb55a3a8a (patch) | |
tree | e00b20c4209b30bc07a23d767f13f8afa6273888 | |
parent | 5d817c4371d3d1a8a64102abdb897a961e4ccda2 (diff) |
Fix comma style in app.src templates
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | priv/templates/otp_app.app.src | 20 | ||||
-rw-r--r-- | priv/templates/otp_lib.app.src | 16 |
3 files changed, 20 insertions, 17 deletions
@@ -16,3 +16,4 @@ logs /.rebar priv/templates/*.dtl.erl ebin +.edts diff --git a/priv/templates/otp_app.app.src b/priv/templates/otp_app.app.src index 5188f56..d5ea3d2 100644 --- a/priv/templates/otp_app.app.src +++ b/priv/templates/otp_app.app.src @@ -1,12 +1,12 @@ {application, {{name}}, - [{description, "{{desc}}"} - ,{vsn, "0.1.0"} - ,{registered, []} - ,{mod, {'{{name}}_app', []}} - ,{applications, - [kernel - ,stdlib - ]} - ,{env,[]} - ,{modules, []} + [{description, "{{desc}}"}, + {vsn, "0.1.0"}, + {registered, []}, + {mod, {'{{name}}_app', []}}, + {applications, + [kernel, + stdlib + ]}, + {env,[]}, + {modules, []} ]}. diff --git a/priv/templates/otp_lib.app.src b/priv/templates/otp_lib.app.src index 3adefeb..6af7640 100644 --- a/priv/templates/otp_lib.app.src +++ b/priv/templates/otp_lib.app.src @@ -1,9 +1,11 @@ {application, {{name}}, - [{description, "{{desc}}"} - ,{vsn, "0.1.0"} - ,{registered, []} - ,{applications, - [kernel,stdlib]} - ,{env,[]} - ,{modules, []} + [{description, "{{desc}}"}, + {vsn, "0.1.0"}, + {registered, []}, + {applications, + [kernel, + stdlib + ]}, + {env,[]}, + {modules, []} ]}. |