Skip to content

Commit

Permalink
Fix typo in array benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
nalimilan committed Dec 6, 2017
1 parent e162704 commit 589780a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/array/ArrayBenchmarks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ for x in (x_range, x_vec, Int16.(x_range), Float64.(x_range), Float32.(x_range))

g["==", string(typeof(x_vec), " == ", typeof(x))] =
@benchmarkable $x_vec == $x
g["isequal", string(typeof(x_vec), " isequa l", typeof(x))] =
g["isequal", string(typeof(x_vec), " isequal ", typeof(x))] =
@benchmarkable isequal($x_vec, $x)
end

Expand Down

0 comments on commit 589780a

Please sign in to comment.