Skip to content

Commit

Permalink
Merge branch 'weisslj/fix-abcast-comment-typo/OTP-11219' into maint
Browse files Browse the repository at this point in the history
* weisslj/fix-abcast-comment-typo/OTP-11219:
  Fix typo in abcast() function comment
  • Loading branch information
rimmius committed Aug 5, 2013
2 parents d9f1c1f + afb91b3 commit 08c4a46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/kernel/src/rpc.erl
Expand Up @@ -407,7 +407,7 @@ cast(Node, Mod, Fun, Args) ->
true.


%% Asynchronous broadcast, returns nothing, it's just send'n prey
%% Asynchronous broadcast, returns nothing, it's just send 'n' pray
-spec abcast(Name, Msg) -> abcast when
Name :: atom(),
Msg :: term().
Expand Down
2 changes: 1 addition & 1 deletion lib/stdlib/src/gen_server.erl
Expand Up @@ -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)).
Expand Down

0 comments on commit 08c4a46

Please sign in to comment.