One code snippet in `Counting` chapter has no space between 'if' keyword and its opening brace while other snippets have. This commit fixes the snippet to use consistent coding style. Signed-off-by: SeongJae Park <sj38.park@xxxxxxxxx> --- count/count.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/count/count.tex b/count/count.tex index 752371f..cf79753 100644 --- a/count/count.tex +++ b/count/count.tex @@ -1544,7 +1544,7 @@ references only per-thread variables, and should not incur any cache misses. \begin{minipage}[t]{\columnwidth} \small \begin{verbatim} - 3 if (counter + delta <= countermax){ + 3 if (counter + delta <= countermax) { 4 counter += delta; 5 return 1; 6 } -- 2.10.0 -- To unsubscribe from this list: send the line "unsubscribe perfbook" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html