Skip to content

Commit

Permalink
Fix module usage in port pool in README.md (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackalcooper authored Feb 27, 2024
1 parent 4f6aaae commit deae8ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ defmodule PortPool do
receive do
{^port, {:data, data}} ->
try do
Port.unlink(port)
Process.unlink(port)
{data, :ok}
rescue
_ -> {data, :close}
Expand Down

0 comments on commit deae8ff

Please sign in to comment.