diff --git a/packages/sol-profiler/src/profiler_subprovider.ts b/packages/sol-profiler/src/profiler_subprovider.ts index 2d2e94b5df..eed744812f 100644 --- a/packages/sol-profiler/src/profiler_subprovider.ts +++ b/packages/sol-profiler/src/profiler_subprovider.ts @@ -128,7 +128,7 @@ export const profilerHandler: SingleFileSubtraceHandler = ( // `interestingStructLogs` are those that map back to source ranges within the current file. // It also doesn't include any that cannot be mapped back // This is a perf optimization reducing the work done in the loop over `statementIds`. - // TODO(logvinov) Optimize the loop below. + // TODO(logvinov): Optimize the loop below. const interestingStructLogs = _.filter(subtrace, structLog => { const sourceRange = pcToSourceRange[structLog.pc]; if (_.isUndefined(sourceRange)) {