authorgravatar for r00ster91@proton.meWooster <r00ster91@proton.me> 2023-07-23 20:24:32+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-07-24 10:57:11-07:00
logaea29afc448d8d93ca19e860c0c0b47c462e56a4
treeca77e61f5a743f38dde71a5116d692fd930d339c
parentf8666d748d57c5a71cfb2ae2a9eb1209fcee6e81

langref: update docs for ** and ++

This behavior changed with https://github.com/ziglang/zig/issues/7147

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

doc/langref.html.in+2-2
......@@ -2286,7 +2286,7 @@ value == null{#endsyntax#}</pre>
22862286 <td>
22872287 Array concatenation.
22882288 <ul>
2289 <li>Only available when {#syntax#}a{#endsyntax#} and {#syntax#}b{#endsyntax#} are {#link|compile-time known|comptime#}.</li>
2289 <li>Only available when the lengths of both {#syntax#}a{#endsyntax#} and {#syntax#}b{#endsyntax#} are {#link|compile-time known|comptime#}.</li>
22902290 </ul>
22912291 </td>
22922292 <td>
......@@ -2307,7 +2307,7 @@ mem.eql(u32, &together, &[_]u32{1,2,3,4}){#endsyntax#}</pre>
23072307 <td>
23082308 Array multiplication.
23092309 <ul>
2310 <li>Only available when {#syntax#}a{#endsyntax#} and {#syntax#}b{#endsyntax#} are {#link|compile-time known|comptime#}.</li>
2310 <li>Only available when the length of {#syntax#}a{#endsyntax#} and {#syntax#}b{#endsyntax#} are {#link|compile-time known|comptime#}.</li>
23112311 </ul>
23122312 </td>
23132313 <td>