Skip to content

Commit 4bdf29f

Browse files
authored
Remove overly-specific RNG source in doc example
1 parent 9098106 commit 4bdf29f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ suite["utf8"] = BenchmarkGroup(["string", "unicode"])
511511
suite["trig"] = BenchmarkGroup(["math", "triangles"])
512512

513513
# Add some benchmarks to the "utf8" group
514-
teststr = join(rand(MersenneTwister(1), 'a':'d', 10^4));
514+
teststr = join(rand('a':'d', 10^4));
515515
suite["utf8"]["replace"] = @benchmarkable replace($teststr, "a" => "b")
516516
suite["utf8"]["join"] = @benchmarkable join($teststr, $teststr)
517517

0 commit comments

Comments
 (0)