From bd6f2ebe9ad2df4b5b6d0b9d4d05382789f5b788 Mon Sep 17 00:00:00 2001 From: Fernando Tapia Rico Date: Fri, 21 Dec 2018 10:21:15 +0100 Subject: Remove trailing commas in templates (#8545) --- lib/mix/lib/mix/tasks/new.ex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/mix/lib/mix/tasks/new.ex b/lib/mix/lib/mix/tasks/new.ex index 4fc436433..13c60d352 100644 --- a/lib/mix/lib/mix/tasks/new.ex +++ b/lib/mix/lib/mix/tasks/new.ex @@ -321,7 +321,7 @@ defmodule Mix.Tasks.New do defp deps do [ # {:dep_from_hexpm, "~> 0.3.0"}, - # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}, + # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} ] end end @@ -357,7 +357,7 @@ defmodule Mix.Tasks.New do [ # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}, - # {:sibling_app_in_umbrella, in_umbrella: true}, + # {:sibling_app_in_umbrella, in_umbrella: true} ] end end @@ -475,7 +475,7 @@ defmodule Mix.Tasks.New do # List all child processes to be supervised children = [ # Starts a worker by calling: <%= @mod %>.Worker.start_link(arg) - # {<%= @mod %>.Worker, arg}, + # {<%= @mod %>.Worker, arg} ] # See https://hexdocs.pm/elixir/Supervisor.html -- cgit v1.2.1