diff --git a/compiler/noirc_errors/src/reporter.rs b/compiler/noirc_errors/src/reporter.rs index bb8f169912..d695b2007b 100644 --- a/compiler/noirc_errors/src/reporter.rs +++ b/compiler/noirc_errors/src/reporter.rs @@ -199,7 +199,7 @@ fn stack_trace<'files>( let source = files.source(call_item.file).expect("should get file source"); let (line, column) = location(source.as_ref(), call_item.span.start()); - result += &format!("{}. {}.nr:{}:{}\n", i + 1, path, line, column); + result += &format!("{}. {}:{}:{}\n", i + 1, path, line, column); } result