From 21d9f0c2a123a0939881ba55bad84e4bae990e47 Mon Sep 17 00:00:00 2001 From: Manlio Perillo Date: Wed, 25 Jan 2023 16:58:50 +0100 Subject: [PATCH] langref: add missing dot at the end of the paragraph In the "C Variadic Functions" section, add a missing dot at the end of the paragraph before the test_defining_variadic_function.zig example. --- 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 463dc16146..2137ec3e3a 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -10892,7 +10892,7 @@ test "variadic function" { } {#code_end#}

- Variadic functions can be implemented using {#link|@cVaStart#}, {#link|@cVaEnd#}, {#link|@cVaArg#} and {#link|@cVaCopy#} + Variadic functions can be implemented using {#link|@cVaStart#}, {#link|@cVaEnd#}, {#link|@cVaArg#} and {#link|@cVaCopy#}.

{#code_begin|test|test_defining_variadic_function#} const std = @import("std");