Skip to content

Commit

Permalink
Fix indentation and add one more contributor
Browse files Browse the repository at this point in the history
  • Loading branch information
kostis committed Oct 14, 2015
1 parent 02313a5 commit fea60b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions THANKS
Expand Up @@ -17,6 +17,7 @@ pull requests that have been incorporated in PropEr's code base:
14. Zaiming Shi
15. Pino Toscano
16. Garret Smith
17. Michael Uvarov

We sincerely thank them for making PropEr a better tool.

Expand Down
4 changes: 2 additions & 2 deletions src/proper_gen.erl
Expand Up @@ -273,8 +273,8 @@ keep_shrinking(ImmInstance, Acc, Type, State) ->
{[], done} -> %% no more shrinkers
lists:reverse([ImmInstance|Acc]);
{[], NewState} ->
%% try next shrinker
keep_shrinking(ImmInstance, Acc, Type, NewState);
%% try next shrinker
keep_shrinking(ImmInstance, Acc, Type, NewState);
{[Shrunk|_Rest], _NewState} ->
keep_shrinking(Shrunk, [ImmInstance|Acc], Type)
end.
Expand Down

0 comments on commit fea60b1

Please sign in to comment.