aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/supervisor.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2011-02-22 11:24:53 +0100
committerIngela Anderton Andin <[email protected]>2011-02-22 11:56:36 +0100
commita317dc1cce5705a5ccace98fdef59704e7240b6d (patch)
tree14014a85430c6107ead05f71baead33fe6d27baf /lib/stdlib/src/supervisor.erl
parenta51fea68bbcf341bf7857a6bd3f0c17ffd0402bb (diff)
downloadotp-a317dc1cce5705a5ccace98fdef59704e7240b6d.tar.gz
otp-a317dc1cce5705a5ccace98fdef59704e7240b6d.tar.bz2
otp-a317dc1cce5705a5ccace98fdef59704e7240b6d.zip
Added test case do_not_save_start_parameters_for_temporary_children and fixed
dialyzer spec.
Diffstat (limited to 'lib/stdlib/src/supervisor.erl')
-rw-r--r--lib/stdlib/src/supervisor.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/supervisor.erl b/lib/stdlib/src/supervisor.erl
index 469063689d..3c5800effa 100644
--- a/lib/stdlib/src/supervisor.erl
+++ b/lib/stdlib/src/supervisor.erl
@@ -40,7 +40,7 @@
%%--------------------------------------------------------------------------
-type child_id() :: pid() | 'undefined'.
--type mfargs() :: {module(), atom(), [term()]}.
+-type mfargs() :: {module(), atom(), [term()] | undefined}.
-type modules() :: [module()] | 'dynamic'.
-type restart() :: 'permanent' | 'transient' | 'temporary'.
-type shutdown() :: 'brutal_kill' | timeout().