Skip to content

Commit

Permalink
socket: fix spec of sendto
Browse files Browse the repository at this point in the history
  • Loading branch information
kikofernandez committed Feb 5, 2025
1 parent 7f1416f commit ad9f3e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kernel/src/socket.erl
Original file line number Diff line number Diff line change
Expand Up @@ -3761,7 +3761,7 @@ an explanation of `TimeoutOrHandle`.
-spec sendto(Socket :: socket(), Data :: iodata(),
Dest :: sockaddr(), Flags :: [msg_flag() | integer()]) -> dynamic();
(Socket :: socket(), Data :: iodata(),
Cont :: select_info(), Timeout :: timeout() | Handle :: nowait | select_handle()) -> dynamic();
Cont :: select_info(), Timeout :: timeout() | 'nowait' | Handle :: select_handle()) -> dynamic();
(Socket :: socket(), Data :: iodata(),
Dest :: sockaddr(), Timeout :: timeout() | 'nowait' | Handle :: select_handle() | completion_handle()) -> dynamic().

Expand Down

0 comments on commit ad9f3e8

Please sign in to comment.