Skip to content

Commit

Permalink
Fix dialyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
Vagabond committed Aug 4, 2018
1 parent 85e07ad commit 1ec7df5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/poolboy.erl
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
-type start_ret() :: {'ok', pid()} | 'ignore' | {'error', term()}.

-record(state, {
supervisor :: pid(),
workers :: [pid()],
supervisor :: undefined | pid(),
workers = [] :: [pid()],
waiting :: pid_queue(),
monitors :: ets:tid(),
size = 5 :: non_neg_integer(),
Expand Down

0 comments on commit 1ec7df5

Please sign in to comment.