authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-12-18 23:57:00-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-12-18 23:57:00-07:00
log80b21cef5af29b7473332f2f902a64caba687dc8
treef750b3ba51da5f83e4c6703f9498e253074f872f
parent07c03f85a8e062923b07572a68acc0191c84f001

langref: fix tidy html error

regressed in 8468b544e8769b774e2e5988a58c51d991df999a

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

doc/langref.html.in+1-1
......@@ -2489,6 +2489,7 @@ test "null terminated array" {
24892489 <p>
24902490 Vectors support the same builtin operators as their underlying base types. These operations are performed
24912491 element-wise, and return a vector of the same length as the input vectors. This includes:
2492 </p>
24922493 <ul>
24932494 <li>Arithmetic ({#syntax#}+{#endsyntax#}, {#syntax#}-{#endsyntax#}, {#syntax#}/{#endsyntax#}, {#syntax#}*{#endsyntax#},
24942495 {#syntax#}@divFloor{#endsyntax#}, {#syntax#}@sqrt{#endsyntax#}, {#syntax#}@ceil{#endsyntax#},
......@@ -2497,7 +2498,6 @@ test "null terminated array" {
24972498 {#syntax#}|{#endsyntax#}, {#syntax#}~{#endsyntax#}, etc.)</li>
24982499 <li>Comparison operators ({#syntax#}<{#endsyntax#}, {#syntax#}>{#endsyntax#}, {#syntax#}=={#endsyntax#}, etc.)</li>
24992500 </ul>
2500 </p>
25012501 <p>
25022502 It is prohibited to use a math operator on a mixture of scalars (individual numbers) and vectors.
25032503 Zig provides the {#link|@splat#} builtin to easily convert from scalars to vectors, and it supports {#link|@reduce#}