From fcf1229ff3a897cc9665ab35517bb77cbbc3a8d6 Mon Sep 17 00:00:00 2001 From: Piotr Magiera Date: Wed, 22 May 2024 19:05:58 +0200 Subject: [PATCH] minor fix --- .../cairo-profiler/src/trace_reader/function_trace_builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cairo-profiler/src/trace_reader/function_trace_builder.rs b/crates/cairo-profiler/src/trace_reader/function_trace_builder.rs index 805d024..604d1b6 100644 --- a/crates/cairo-profiler/src/trace_reader/function_trace_builder.rs +++ b/crates/cairo-profiler/src/trace_reader/function_trace_builder.rs @@ -173,7 +173,7 @@ pub fn collect_profiling_info( // Some real function traces may be converted to the same displayable traces e.g. // [func, func[expr36], func[expr36]] and [func, func[expr36]] both are converted to [func]. - // We aggregate them, adding their steps. It doesn't make a difference to pprof, but it may + // We aggregate them, adding their steps. Pprof does it under the hood anyway, but it may // help us when adding integration tests. let deduplicated_functions_stack_traces = displayable_functions_stack_traces .into_iter()