Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #142

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/poolboy.erl
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ start(PoolArgs, WorkerArgs) ->
-spec start_link(PoolArgs :: proplists:proplist())
-> start_ret().
start_link(PoolArgs) ->
%% for backwards compatability, pass the pool args as the worker args as well
%% for backwards compatibility, pass the pool args as the worker args as well
start_link(PoolArgs, PoolArgs).

-spec start_link(PoolArgs :: proplists:proplist(),
Expand Down
2 changes: 1 addition & 1 deletion test/poolboy_tests.erl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pool_test_() ->
{<<"Pool behaves when empty">>,
fun pool_empty/0
},
{<<"Pool behaves when empty and oveflow is disabled">>,
{<<"Pool behaves when empty and overflow is disabled">>,
fun pool_empty_no_overflow/0
},
{<<"Pool behaves on worker death">>,
Expand Down