From eb11bdfeaed76c614ce8d496840733a40997f1a8 Mon Sep 17 00:00:00 2001 From: Lewis Baker Date: Wed, 15 Nov 2023 15:38:24 +1030 Subject: [PATCH] Fix typo in [allocator.requirements.general] wording for `a.construct(c, args)` Add missing ellipsis, changing to `a.construct(c, args...)`. --- source/lib-intro.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib-intro.tex b/source/lib-intro.tex index 6fe8e8fa0e..858fb6f51c 100644 --- a/source/lib-intro.tex +++ b/source/lib-intro.tex @@ -2572,7 +2572,7 @@ \end{itemdescr} \begin{itemdecl} -a.construct(c, args) +a.construct(c, args...) \end{itemdecl} \begin{itemdescr}