Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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