Skip to content

Commit

Permalink
Fix faulty function call in comment (elixir-lang#7692)
Browse files Browse the repository at this point in the history
The children defined further up in the comment are not included in the
function call.
  • Loading branch information
linduxed authored and josevalim committed May 17, 2018
1 parent 20e1d75 commit 6d43930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/elixir/lib/task/supervisor.ex
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defmodule Task.Supervisor do
{Task.Supervisor, name: MyApp.TaskSupervisor}
]
Supervisor.start_link(strategy: :one_for_one)
Supervisor.start_link(children, strategy: :one_for_one)
The options given in the child specification are documented in `start_link/1`.
Expand Down

0 comments on commit 6d43930

Please sign in to comment.