Skip to content

Commit

Permalink
Fix typo in abcast() function comment
Browse files Browse the repository at this point in the history
  • Loading branch information
weisslj committed Aug 1, 2013
1 parent d9f1c1f commit afb91b3
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 afb91b3

Please sign in to comment.