Skip to content

Commit

Permalink
Clean up whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
b20n committed Nov 17, 2013
1 parent f5e777d commit 0a1d531
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/bear.erl
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,12 @@ get_null_statistics_subset([], Acc) ->
lists:reverse(Acc).

calc_steps(Items) ->
lists:foldl(fun({I,_},Acc) ->
erlang:max(level(I), Acc);
(I,Acc) ->
erlang:max(level(I), Acc)
end, 1, Items).
lists:foldl(
fun({I,_},Acc) ->
erlang:max(level(I), Acc);
(I,Acc) ->
erlang:max(level(I), Acc)
end, 1, Items).

level(standard_deviation) -> 3;
level(variance ) -> 3;
Expand Down

0 comments on commit 0a1d531

Please sign in to comment.