Skip to content

Commit 406bc6d

Browse files
authored
Qualify randn!
1 parent c636dfd commit 406bc6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utilities.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function _randn(
2121
) where {T}
2222
@argcheck length(rngs) == n_chains
2323
out = similar(rngs, T, dim, n_chains)
24-
map!(randn!, eachcol(out), rngs)
24+
map!(Random.randn!, eachcol(out), rngs)
2525
return out
2626
end
2727

0 commit comments

Comments
 (0)