From 7b187c89496e1e6e0d5199a3dc1c0149bf3f0aa4 Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Sat, 22 Aug 2026 22:52:26 +0200 Subject: [PATCH] [ub:intro.races.data] Add comma --- source/ub.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ub.tex b/source/ub.tex index 727ad0dae8..8a339c44aa 100644 --- a/source/ub.tex +++ b/source/ub.tex @@ -472,7 +472,7 @@ int count = 0; auto f = [&] { count++; }; std::thread t1{f}, t2{f}, t3{f}; -// undefined behavior \tcode{t1}, \tcode{t2} and \tcode{t3} have a data race on access of variable \tcode{count} +// undefined behavior, \tcode{t1}, \tcode{t2} and \tcode{t3} have a data race on access of variable \tcode{count} \end{codeblock} \end{example}