Skip to content

Commit 01ebb48

Browse files
committed
add return statement for consistency
1 parent df5427a commit 01ebb48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/internals.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function _set_C_n_size(collection, n::Integer, size::Nothing, minsize)
7777
n < 1 && throw(ArgumentError("n must be >= 1"))
7878
mcs = _set_minsize(minsize)
7979
nmax = min(length(collection) ÷ mcs, n)
80-
FixedCount, nmax, 0
80+
return FixedCount, nmax, 0
8181
end
8282

8383
function err_missing_input()

0 commit comments

Comments
 (0)