commit 5afa7f2545a5f350bbac4c9d9349a7fbbd8f0977 (tree)
parent f510f385920b9a22bd1e68839cd4be3eea092e4d
Author: Paul <mrpaul@aestheticwisdom.com>
Date: Sat, 11 Jul 2020 09:09:07 +0700
Update doc/langref.html.in
Co-authored-by: Joachim Schmidt <joachim.schmidt557@outlook.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/langref.html.in b/doc/langref.html.in
@@ -273,8 +273,8 @@ pub fn main() !void {
</p>
<p>
In the <code>hello.zig</code> code sample, the <code>main</code> function is declared
- with the {#syntax#}!void{#endsyntax#} return type. This return type tells the Zig compiler,
- and other people reading the code, the function will not return a value and it <i>might</i> fail.
+ with the {#syntax#}!void{#endsyntax#} return type. This return type tells the Zig compiler
+ and other people reading the code that the function will not return a value and it <i>might</i> fail.
The {#syntax#}!{#endsyntax#} (bang, exclamation mark) before the {#syntax#}void{#endsyntax#}
{#link|type|Primitive Types#} is what tells the Zig compiler an {#link|error|Errors#} <i>might</i>
occur. The {#syntax#}void{#endsyntax#} return type tells the Zig compiler the <code>main</code>