authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-04-24 12:56:24-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-04-25 11:23:41-07:00
logbd6f01c751f923d28fa375f1bc91f63ceb3c9693
tree3a3f8626d3781313c29e94683792e97555c93ce7
parent58fabbc903eb5c75a02bedd8653f4c045c458f31

langref: fix compile error


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

doc/langref.html.in+2-2
......@@ -8684,11 +8684,11 @@ test "integer cast panic" {
86848684 <pre>{#syntax#}@memcpy(noalias dest, noalias source) void{#endsyntax#}</pre>
86858685 <p>This function copies bytes from one region of memory to another.</p>
86868686 <p>{#syntax#}dest{#endsyntax#} must be a mutable slice, a mutable pointer to an array, or
8687 a mutable many-item {#link|pointer|Pointer#}. It may have any
8687 a mutable many-item {#link|pointer|Pointers#}. It may have any
86888688 alignment, and it may have any element type.</p>
86898689 <p>Likewise, {#syntax#}source{#endsyntax#} must be a mutable slice, a
86908690 mutable pointer to an array, or a mutable many-item
8691 {#link|pointer|Pointer#}. It may have any alignment, and it may have any
8691 {#link|pointer|Pointers#}. It may have any alignment, and it may have any
86928692 element type.</p>
86938693 <p>The {#syntax#}source{#endsyntax#} element type must support {#link|Type Coercion#}
86948694 into the {#syntax#}dest{#endsyntax#} element type. The element types may have