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" {...@@ -2489,6 +2489,7 @@ test "null terminated array" {
2489 <p>2489 <p>
2490 Vectors support the same builtin operators as their underlying base types. These operations are performed 2490 Vectors support the same builtin operators as their underlying base types. These operations are performed
2491 element-wise, and return a vector of the same length as the input vectors. This includes:2491 element-wise, and return a vector of the same length as the input vectors. This includes:
2492 </p>
2492 <ul>2493 <ul>
2493 <li>Arithmetic ({#syntax#}+{#endsyntax#}, {#syntax#}-{#endsyntax#}, {#syntax#}/{#endsyntax#}, {#syntax#}*{#endsyntax#}, 2494 <li>Arithmetic ({#syntax#}+{#endsyntax#}, {#syntax#}-{#endsyntax#}, {#syntax#}/{#endsyntax#}, {#syntax#}*{#endsyntax#},
2494 {#syntax#}@divFloor{#endsyntax#}, {#syntax#}@sqrt{#endsyntax#}, {#syntax#}@ceil{#endsyntax#}, 2495 {#syntax#}@divFloor{#endsyntax#}, {#syntax#}@sqrt{#endsyntax#}, {#syntax#}@ceil{#endsyntax#},
...@@ -2497,7 +2498,6 @@ test "null terminated array" {...@@ -2497,7 +2498,6 @@ test "null terminated array" {
2497 {#syntax#}|{#endsyntax#}, {#syntax#}~{#endsyntax#}, etc.)</li>2498 {#syntax#}|{#endsyntax#}, {#syntax#}~{#endsyntax#}, etc.)</li>
2498 <li>Comparison operators ({#syntax#}<{#endsyntax#}, {#syntax#}>{#endsyntax#}, {#syntax#}=={#endsyntax#}, etc.)</li>2499 <li>Comparison operators ({#syntax#}<{#endsyntax#}, {#syntax#}>{#endsyntax#}, {#syntax#}=={#endsyntax#}, etc.)</li>
2499 </ul>2500 </ul>
2500 </p>
2501 <p>2501 <p>
2502 It is prohibited to use a math operator on a mixture of scalars (individual numbers) and vectors. 2502 It is prohibited to use a math operator on a mixture of scalars (individual numbers) and vectors.
2503 Zig provides the {#link|@splat#} builtin to easily convert from scalars to vectors, and it supports {#link|@reduce#} 2503 Zig provides the {#link|@splat#} builtin to easily convert from scalars to vectors, and it supports {#link|@reduce#}