diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-04-24 12:56:24 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-04-25 11:23:41 -0700 |
| commit | bd6f01c751f923d28fa375f1bc91f63ceb3c9693 (patch) | |
| tree | 3a3f8626d3781313c29e94683792e97555c93ce7 /doc | |
| parent | 58fabbc903eb5c75a02bedd8653f4c045c458f31 (diff) | |
| download | zig-bd6f01c751f923d28fa375f1bc91f63ceb3c9693.tar.gz zig-bd6f01c751f923d28fa375f1bc91f63ceb3c9693.zip | |
langref: fix compile error
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/langref.html.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/langref.html.in b/doc/langref.html.in index 1fc6a7e98d..a213950a15 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -8684,11 +8684,11 @@ test "integer cast panic" { <pre>{#syntax#}@memcpy(noalias dest, noalias source) void{#endsyntax#}</pre> <p>This function copies bytes from one region of memory to another.</p> <p>{#syntax#}dest{#endsyntax#} must be a mutable slice, a mutable pointer to an array, or - a mutable many-item {#link|pointer|Pointer#}. It may have any + a mutable many-item {#link|pointer|Pointers#}. It may have any alignment, and it may have any element type.</p> <p>Likewise, {#syntax#}source{#endsyntax#} must be a mutable slice, a mutable pointer to an array, or a mutable many-item - {#link|pointer|Pointer#}. It may have any alignment, and it may have any + {#link|pointer|Pointers#}. It may have any alignment, and it may have any element type.</p> <p>The {#syntax#}source{#endsyntax#} element type must support {#link|Type Coercion#} into the {#syntax#}dest{#endsyntax#} element type. The element types may have |
