diff options
author | Hans Bolinder <[email protected]> | 2018-02-27 13:35:25 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2018-02-27 13:35:25 +0100 |
commit | 4baa7361afa5b10e46bf1438e560dc4b33f5b248 (patch) | |
tree | 2d38ca9d985b287c7af0f6cfd3071ad46ab9f25a /lib/kernel/src | |
parent | 478b43211bbe96018b63cbf6c6d567550a6e8a2c (diff) | |
download | otp-4baa7361afa5b10e46bf1438e560dc4b33f5b248.tar.gz otp-4baa7361afa5b10e46bf1438e560dc4b33f5b248.tar.bz2 otp-4baa7361afa5b10e46bf1438e560dc4b33f5b248.zip |
kernel: Improve docs of rpc:multicall/5
Diffstat (limited to 'lib/kernel/src')
-rw-r--r-- | lib/kernel/src/rpc.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/kernel/src/rpc.erl b/lib/kernel/src/rpc.erl index 0e0b7dffa3..b04aa9030b 100644 --- a/lib/kernel/src/rpc.erl +++ b/lib/kernel/src/rpc.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2017. All Rights Reserved. +%% Copyright Ericsson AB 1996-2018. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -498,7 +498,7 @@ start_monitor(Node, Name) -> Module :: module(), Function :: atom(), Args :: [term()], - ResL :: [term()], + ResL :: [Res :: term() | {'badrpc', Reason :: term()}], BadNodes :: [node()]. multicall(M, F, A) -> @@ -509,14 +509,14 @@ multicall(M, F, A) -> Module :: module(), Function :: atom(), Args :: [term()], - ResL :: [term()], + ResL :: [Res :: term() | {'badrpc', Reason :: term()}], BadNodes :: [node()]; (Module, Function, Args, Timeout) -> {ResL, BadNodes} when Module :: module(), Function :: atom(), Args :: [term()], Timeout :: timeout(), - ResL :: [term()], + ResL :: [Res :: term() | {'badrpc', Reason :: term()}], BadNodes :: [node()]. multicall(Nodes, M, F, A) when is_list(Nodes) -> @@ -531,7 +531,7 @@ multicall(M, F, A, Timeout) -> Function :: atom(), Args :: [term()], Timeout :: timeout(), - ResL :: [term()], + ResL :: [Res :: term() | {'badrpc', Reason :: term()}], BadNodes :: [node()]. multicall(Nodes, M, F, A, infinity) |