diff options
author | Fredrik Gustafsson <[email protected]> | 2013-11-14 09:13:33 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-11-14 09:13:33 +0100 |
commit | c46240c78fbce1b8b026f975d80b397209ac4968 (patch) | |
tree | 67f0b922a2535c662d4d6be0e99820c2676207a2 /lib | |
parent | c01df2215ac3ddef82116abac5eaf236d3788f21 (diff) | |
parent | 373dd2779f641894a698a269164db7f075a96dfa (diff) | |
download | otp-c46240c78fbce1b8b026f975d80b397209ac4968.tar.gz otp-c46240c78fbce1b8b026f975d80b397209ac4968.tar.bz2 otp-c46240c78fbce1b8b026f975d80b397209ac4968.zip |
Merge branch 'efine/pr/multicall-doc/OTP-11471' into maint
* efine/pr/multicall-doc/OTP-11471:
Fix rpc multicall sample code
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kernel/doc/src/rpc.xml | 2 |
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> |