Skip to content

Commit

Permalink
add return statement for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
lmiq committed Sep 27, 2024
1 parent df5427a commit 01ebb48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internals.jl
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function _set_C_n_size(collection, n::Integer, size::Nothing, minsize)
n < 1 && throw(ArgumentError("n must be >= 1"))
mcs = _set_minsize(minsize)
nmax = min(length(collection) ÷ mcs, n)
FixedCount, nmax, 0
return FixedCount, nmax, 0
end

function err_missing_input()
Expand Down

0 comments on commit 01ebb48

Please sign in to comment.