Skip to content

Commit 8c4220e

Browse files
committed
Add missing using:
1 parent 665b53c commit 8c4220e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Swift 4.2
110110

111111
var mt = MersenneTwister()
112112
let diceRoll = Int.random(in: 1 ... 6, using: &mt)
113-
let randomUnit = Double.random(in: 0 ..< 1, &mt)
113+
let randomUnit = Double.random(in: 0 ..< 1, using: &mt)
114114
let randomBool = Bool.random(using: &mt)
115115

116116
// Collection additions

0 commit comments

Comments
 (0)