From b3672e073819fdb5c2d21c0b50127c1bfcdc9b3f Mon Sep 17 00:00:00 2001
From: r00ster
Date: Thu, 26 May 2022 18:53:41 +0200
Subject: [PATCH] Fix grammatical error
Fixes #11675
---
doc/langref.html.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/langref.html.in b/doc/langref.html.in
index 32320d5113..1f445b1b59 100644
--- 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.
Next, a {#link|public function|Functions#}, {#syntax#}pub fn{#endsyntax#}, named {#syntax#}main{#endsyntax#}