Skip to content

Commit a58a924

Browse files
author
José Valim
committed
:start cannot be customized on use
Signed-off-by: José Valim <[email protected]>
1 parent e0a9b4b commit a58a924

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

lib/elixir/lib/agent.ex

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ defmodule Agent do
123123
The generated `child_spec/1` can be customized with the following options:
124124
125125
* `:id` - the child specification identifier, defaults to the current module
126-
* `:start` - how to start the child process (defaults to calling `__MODULE__.start_link/1`)
127126
* `:restart` - when the child should be restarted, defaults to `:permanent`
128127
* `:shutdown` - how to shut down the child, either immediately or by giving it time to shut down
129128

lib/elixir/lib/gen_server.ex

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ defmodule GenServer do
142142
The generated `child_spec/1` can be customized with the following options:
143143
144144
* `:id` - the child specification identifier, defaults to the current module
145-
* `:start` - how to start the child process (defaults to calling `__MODULE__.start_link/1`)
146145
* `:restart` - when the child should be restarted, defaults to `:permanent`
147146
* `:shutdown` - how to shut down the child, either immediately or by giving it time to shut down
148147

lib/elixir/lib/supervisor.ex

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,6 @@ defmodule Supervisor do
306306
following options:
307307
308308
* `:id` - the child specification identifier, defaults to the current module
309-
* `:start` - how to start the child process (defaults to calling `__MODULE__.start_link/1`)
310309
* `:restart` - when the supervisor should be restarted, defaults to `:permanent`
311310
312311
The `@doc` annotation immediately preceding `use Supervisor` will be

lib/elixir/lib/task.ex

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ defmodule Task do
9797
`child_spec/1` can be customized with the following options:
9898
9999
* `:id` - the child specification identifier, defaults to the current module
100-
* `:start` - how to start the child process (defaults to calling `__MODULE__.start_link/1`)
101100
* `:restart` - when the child should be restarted, defaults to `:temporary`
102101
* `:shutdown` - how to shut down the child, either immediately or by giving it time to shut down
103102

0 commit comments

Comments
 (0)