Skip to content

Commit bd6f2eb

Browse files
fertapricjosevalim
authored andcommitted
Remove trailing commas in templates (#8545)
1 parent 7634f3f commit bd6f2eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/mix/lib/mix/tasks/new.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ defmodule Mix.Tasks.New do
321321
defp deps do
322322
[
323323
# {:dep_from_hexpm, "~> 0.3.0"},
324-
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
324+
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
325325
]
326326
end
327327
end
@@ -357,7 +357,7 @@ defmodule Mix.Tasks.New do
357357
[
358358
# {:dep_from_hexpm, "~> 0.3.0"},
359359
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
360-
# {:sibling_app_in_umbrella, in_umbrella: true},
360+
# {:sibling_app_in_umbrella, in_umbrella: true}
361361
]
362362
end
363363
end
@@ -475,7 +475,7 @@ defmodule Mix.Tasks.New do
475475
# List all child processes to be supervised
476476
children = [
477477
# Starts a worker by calling: <%= @mod %>.Worker.start_link(arg)
478-
# {<%= @mod %>.Worker, arg},
478+
# {<%= @mod %>.Worker, arg}
479479
]
480480
481481
# See https://hexdocs.pm/elixir/Supervisor.html

0 commit comments

Comments
 (0)