File tree Expand file tree Collapse file tree 4 files changed +0
-4
lines changed Expand file tree Collapse file tree 4 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,6 @@ defmodule Agent do
123
123
The generated `child_spec/1` can be customized with the following options:
124
124
125
125
* `: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`)
127
126
* `:restart` - when the child should be restarted, defaults to `:permanent`
128
127
* `:shutdown` - how to shut down the child, either immediately or by giving it time to shut down
129
128
Original file line number Diff line number Diff line change @@ -142,7 +142,6 @@ defmodule GenServer do
142
142
The generated `child_spec/1` can be customized with the following options:
143
143
144
144
* `: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`)
146
145
* `:restart` - when the child should be restarted, defaults to `:permanent`
147
146
* `:shutdown` - how to shut down the child, either immediately or by giving it time to shut down
148
147
Original file line number Diff line number Diff line change @@ -306,7 +306,6 @@ defmodule Supervisor do
306
306
following options:
307
307
308
308
* `: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`)
310
309
* `:restart` - when the supervisor should be restarted, defaults to `:permanent`
311
310
312
311
The `@doc` annotation immediately preceding `use Supervisor` will be
Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ defmodule Task do
97
97
`child_spec/1` can be customized with the following options:
98
98
99
99
* `: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`)
101
100
* `:restart` - when the child should be restarted, defaults to `:temporary`
102
101
* `:shutdown` - how to shut down the child, either immediately or by giving it time to shut down
103
102
You can’t perform that action at this time.
0 commit comments