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>...@@ -2286,7 +2286,7 @@ value == null{#endsyntax#}</pre>
2286 <td>2286 <td>
2287 Array concatenation.2287 Array concatenation.
2288 <ul>2288 <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>
2290 </ul>2290 </ul>
2291 </td>2291 </td>
2292 <td>2292 <td>
...@@ -2307,7 +2307,7 @@ mem.eql(u32, &together, &[_]u32{1,2,3,4}){#endsyntax#}</pre>...@@ -2307,7 +2307,7 @@ mem.eql(u32, &together, &[_]u32{1,2,3,4}){#endsyntax#}</pre>
2307 <td>2307 <td>
2308 Array multiplication.2308 Array multiplication.
2309 <ul>2309 <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>
2311 </ul>2311 </ul>
2312 </td>2312 </td>
2313 <td>2313 <td>