aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kernel/doc/src/rpc.xml
diff options
context:
space:
mode:
authorEdwin Fine <[email protected]>2013-11-07 22:40:36 -0500
committerEdwin Fine <[email protected]>2013-11-07 22:40:36 -0500
commit373dd2779f641894a698a269164db7f075a96dfa (patch)
tree72628b369ffc5fda3ac992af94ffad56a56cd047 /lib/kernel/doc/src/rpc.xml
parent768a64354e3d69b3c0840a84dd072601c67ca39d (diff)
downloadotp-373dd2779f641894a698a269164db7f075a96dfa.tar.gz
otp-373dd2779f641894a698a269164db7f075a96dfa.tar.bz2
otp-373dd2779f641894a698a269164db7f075a96dfa.zip
Fix rpc multicall sample code
Diffstat (limited to 'lib/kernel/doc/src/rpc.xml')
-rw-r--r--lib/kernel/doc/src/rpc.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kernel/doc/src/rpc.xml b/lib/kernel/doc/src/rpc.xml
index b01ff16c85..67fdccb734 100644
--- a/lib/kernel/doc/src/rpc.xml
+++ b/lib/kernel/doc/src/rpc.xml
@@ -185,7 +185,7 @@
{Mod, Bin, File} = code:get_object_code(Mod),
%% and load it on all nodes including this one
-{ResL, _} = rpc:multicall(code, load_binary, [Mod, Bin, File,]),
+{ResL, _} = rpc:multicall(code, load_binary, [Mod, File, Bin]),
%% and then maybe check the ResL list.</code>
</desc>