diff options
author | Fredrik Gustafsson <[email protected]> | 2013-08-05 10:34:16 +0200 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-08-05 10:34:16 +0200 |
commit | 08c4a46e0be4017bbcee596eb4858d0e16eaaec6 (patch) | |
tree | 95a9c9bb7d74bba449b781959e50b97bf182bfc8 /lib/stdlib/src | |
parent | d9f1c1f1bc658d133b9198e4564e419597793cb4 (diff) | |
parent | afb91b3fc36e57997364f20abaef9d4528113e91 (diff) | |
download | otp-08c4a46e0be4017bbcee596eb4858d0e16eaaec6.tar.gz otp-08c4a46e0be4017bbcee596eb4858d0e16eaaec6.tar.bz2 otp-08c4a46e0be4017bbcee596eb4858d0e16eaaec6.zip |
Merge branch 'weisslj/fix-abcast-comment-typo/OTP-11219' into maint
* weisslj/fix-abcast-comment-typo/OTP-11219:
Fix typo in abcast() function comment
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/gen_server.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/gen_server.erl b/lib/stdlib/src/gen_server.erl index b18d3dc0c0..7f65131f67 100644 --- a/lib/stdlib/src/gen_server.erl +++ b/lib/stdlib/src/gen_server.erl @@ -217,7 +217,7 @@ reply({To, Tag}, Reply) -> catch To ! {Tag, Reply}. %% ----------------------------------------------------------------- -%% Asyncronous broadcast, returns nothing, it's just send'n prey +%% Asynchronous broadcast, returns nothing, it's just send 'n' pray %%----------------------------------------------------------------- abcast(Name, Request) when is_atom(Name) -> do_abcast([node() | nodes()], Name, cast_msg(Request)). |