zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit b3672e073819fdb5c2d21c0b50127c1bfcdc9b3f (tree)
parent 83a2c41cd5230561899f9a3accdbb9e1a52af836
Author: r00ster <r00ster91@proton.me>
Date:   Thu, 26 May 2022 18:53:41 +0200

Fix grammatical error

Fixes #11675
Diffstat:
Mdoc/langref.html.in | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/langref.html.in b/doc/langref.html.in @@ -392,7 +392,7 @@ pub fn main() !void { The code sample begins by adding the {#link|Zig Standard Library#} to the build using the {#link|@import#} builtin function. The {#syntax#}@import("std"){#endsyntax#} function call creates a structure that represents the Zig Standard Library. The code then {#link|declares|Container Level Variables#} a - {#link|constant identifier|Assignment#}, named {#syntax#}std{#endsyntax#}, that gives access the features of the Zig Standard Library. + {#link|constant identifier|Assignment#}, named {#syntax#}std{#endsyntax#}, that gives access to the features of the Zig Standard Library. </p> <p> Next, a {#link|public function|Functions#}, {#syntax#}pub fn{#endsyntax#}, named {#syntax#}main{#endsyntax#}