We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376a981 commit 56ff581Copy full SHA for 56ff581
lib/benchee/suite.ex
@@ -107,7 +107,7 @@ if Code.ensure_loaded?(Table.Reader) do
107
config_percentiles = suite.configuration.percentiles
108
109
Enum.map_reduce(suite.scenarios, 0, fn %Scenario{} = scenario, count ->
110
- secenario_data =
+ scenario_data =
111
Enum.flat_map(measurements_processed, fn measurement_type ->
112
scenario
113
|> Scenario.measurement_data(measurement_type)
@@ -122,7 +122,7 @@ if Code.ensure_loaded?(Table.Reader) do
122
name -> name
123
end
124
125
- row = [scenario.name, input_name] ++ secenario_data
+ row = [scenario.name, input_name] ++ scenario_data
126
127
{row, count + 1}
128
end)
0 commit comments