From 8be82ee74adb09f39e0cc357b071fa6cb8220232 Mon Sep 17 00:00:00 2001 From: zhangtianhao6 Date: Sat, 15 Nov 2025 17:01:31 +0800 Subject: [PATCH] [lld] Fix typo of code comments (nfc) --- lld/ELF/InputSection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp index ff7ef2dce5c79..d5d3823e2d46c 100644 --- a/lld/ELF/InputSection.cpp +++ b/lld/ELF/InputSection.cpp @@ -1398,7 +1398,7 @@ template void EhInputSection::split() { } // Find the first relocation that points to [off,off+size). Relocations - // have been sorted by r_offset. + // have been sorted by offset. const uint64_t off = d.data() - content().data(); while (relI != rels.size() && rels[relI].offset < off) ++relI;