authorgravatar for iokg04@gmail.comIOKG04 <iokg04@gmail.com> 2025-07-28 15:15:49+02:00
committergravatar for iokg04@gmail.comIOKG04 <iokg04@gmail.com> 2025-07-28 15:15:49+02:00
log2dea904d5a1602674d9cd147f8a5f2797dd00c40
treee2b1e027ab0018ec2b7e1b6a6169349a17909cef
parent5381e7891dcdd7b6a9e74250cdcce221fe464cdc

`.strong`, not `.Strong`

https://github.com/ziglang/zig/pull/24537#issuecomment-3124556900

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

doc/langref.html.in+1-1
......@@ -4840,7 +4840,7 @@ fn cmpxchgWeakButNotAtomic(comptime T: type, ptr: *T, expected_value: T, new_val
48404840 <p>
48414841 This builtin can be called from a {#link|comptime#} block to conditionally export symbols.
48424842 When <code>ptr</code> points to a function with the C calling convention and
4843 {#syntax#}options.linkage{#endsyntax#} is {#syntax#}.Strong{#endsyntax#}, this is equivalent to
4843 {#syntax#}options.linkage{#endsyntax#} is {#syntax#}.strong{#endsyntax#}, this is equivalent to
48444844 the {#syntax#}export{#endsyntax#} keyword used on a function:
48454845 </p>
48464846 {#code|export_builtin.zig#}