From 12eddc03a40e8393e82f7ef1dadbaaabdcb00a08 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 8 Oct 2023 16:32:54 -0700 Subject: [PATCH] Reword explanation of SourceMap initial value --- src/fallback.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fallback.rs b/src/fallback.rs index 352b459..281b7b2 100644 --- a/src/fallback.rs +++ b/src/fallback.rs @@ -321,8 +321,8 @@ impl Debug for SourceFile { #[cfg(all(span_locations, not(fuzzing)))] thread_local! { static SOURCE_MAP: RefCell = RefCell::new(SourceMap { - // NOTE: We start with a single dummy file which all call_site() and - // def_site() spans reference. + // Start with a single dummy file which all call_site() and def_site() + // spans reference. files: vec![FileInfo { source_text: String::new(), span: Span { lo: 0, hi: 0 },