authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-05-29 15:15:50+01:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-05-31 05:15:08+01:00
logca2711a959a180db117b226b06971d79ceab9ce7
tree647bccc49077781e09d17b8bd00a1b771799c6ec
parent25e9d22807dca495bb4bc66391d09a2431fb796f
signaturelock-open Commit is signed but in an unrecognized format.

Elf2: fix typo in comment


1 files changed, 1 insertions(+), 3 deletions(-)

src/link/Elf2.zig+1-3
...@@ -59,9 +59,7 @@ copied_globals: std.array_hash_map.Auto(String(.strtab), struct {...@@ -59,9 +59,7 @@ copied_globals: std.array_hash_map.Auto(String(.strtab), struct {
59/// (`R_*_COPY`), but cannot because we have not seen an appropriate definition in a linked DSO yet.59/// (`R_*_COPY`), but cannot because we have not seen an appropriate definition in a linked DSO yet.
60///60///
61/// Therefore, if, when scanning a DSO input, we discover a definition for one of these symbols, we61/// Therefore, if, when scanning a DSO input, we discover a definition for one of these symbols, we
62/// will remove it from this map and call `62/// will remove it from this map and call `maybeAddCopyRelocation`.
63///
64/// which have not created
65want_copied_globals: std.array_hash_map.Auto(String(.strtab), void),63want_copied_globals: std.array_hash_map.Auto(String(.strtab), void),
66/// Key is a node which is a valid `Symbol.node` value, value is the name of the first global symbol64/// Key is a node which is a valid `Symbol.node` value, value is the name of the first global symbol
67/// in that node. That symbol is the head of a linked list: see `Symbol.Global.next_in_node`.65/// in that node. That symbol is the head of a linked list: see `Symbol.Global.next_in_node`.