From 2dea904d5a1602674d9cd147f8a5f2797dd00c40 Mon Sep 17 00:00:00 2001 From: IOKG04 Date: Mon, 28 Jul 2025 15:15:49 +0200 Subject: [PATCH] `.strong`, not `.Strong` https://github.com/ziglang/zig/pull/24537#issuecomment-3124556900 --- doc/langref.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/langref.html.in b/doc/langref.html.in index 139c19211e..6cf44ff784 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -4840,7 +4840,7 @@ fn cmpxchgWeakButNotAtomic(comptime T: type, ptr: *T, expected_value: T, new_val

This builtin can be called from a {#link|comptime#} block to conditionally export symbols. When ptr points to a function with the C calling convention and - {#syntax#}options.linkage{#endsyntax#} is {#syntax#}.Strong{#endsyntax#}, this is equivalent to + {#syntax#}options.linkage{#endsyntax#} is {#syntax#}.strong{#endsyntax#}, this is equivalent to the {#syntax#}export{#endsyntax#} keyword used on a function:

{#code|export_builtin.zig#}