From 897ef471908c2e27a8ba30d98cf9bd125aff68cf Mon Sep 17 00:00:00 2001 From: YClayton <94257246+YClayton@users.noreply.github.com> Date: Fri, 24 Dec 2021 11:40:40 -0600 Subject: [PATCH] Update compoundMultiplication.adoc Change Example Code from: x = 2; x *= 2; // x now contains 4 ---- Change it to: x = 2; x *= 3; // x now contains 6 ---- Just makes it a little clearer, since 2+2=4 and 2*2=4. Too many twos. --- .../Structure/Compound Operators/compoundMultiplication.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Structure/Compound Operators/compoundMultiplication.adoc b/Language/Structure/Compound Operators/compoundMultiplication.adoc index b2ec543ab..cd5f56582 100644 --- a/Language/Structure/Compound Operators/compoundMultiplication.adoc +++ b/Language/Structure/Compound Operators/compoundMultiplication.adoc @@ -47,7 +47,7 @@ This is a convenient shorthand to perform multiplication of a variable with anot [source,arduino] ---- x = 2; -x *= 2; // x now contains 4 +x *= 3; // x now contains 6 ----