Skip to content

Commit b3e0af1

Browse files
authored
Merge pull request #148 from milesfrain/patch-1
Remove overly-specific RNG source in doc example
2 parents 58af704 + 4bdf29f commit b3e0af1

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)