authorgravatar for mrpaul@aestheticwisdom.comPaul <mrpaul@aestheticwisdom.com> 2020-07-11 09:10:08+07:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2020-07-11 09:10:08+07:00
loge57458a94f677c54ba3ff6698831312e622e8b2b
tree17a8cb64b30b7f1dfc880db55278924f451ed635
parent50df1334f35411e0dbf12624dab68667a4e7a6ac
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Update doc/langref.html.in

Co-authored-by: Joachim Schmidt <joachim.schmidt557@outlook.com>

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

doc/langref.html.in+1-1
......@@ -263,7 +263,7 @@ pub fn main() !void {
263263 Next, a {#link|public function|Functions#}, {#syntax#}pub fn{#endsyntax#}, named <code>main</code>
264264 is declared. The <code>main</code> function is necessary because it tells the Zig compiler where the start of
265265 the program exists. Programs designed to be executed will need a {#syntax#}pub fn main{#endsyntax#} function.
266 For more advanced Zig use cases, Zig offers other features to inform the compiler where the start of
266 For more advanced use cases, Zig offers other features to inform the compiler where the start of
267267 the program exists. Libraries, on the other hand, do not need a <code>main</code> function because
268268 library code is usually called by other programs.
269269 </p>