From 461e59633ac05405a232c3cf1b0817e4b43b7f53 Mon Sep 17 00:00:00 2001 From: ROUVREAU Vincent <vincent.rouvreau@inria.fr> Date: Mon, 9 Mar 2020 14:22:57 +0100 Subject: [PATCH] Typo: a *= 7; // multiply current value of a by **3** --- 1-ProceduralProgramming/1-Variables.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-ProceduralProgramming/1-Variables.ipynb b/1-ProceduralProgramming/1-Variables.ipynb index af45c96..f4dfabe 100644 --- a/1-ProceduralProgramming/1-Variables.ipynb +++ b/1-ProceduralProgramming/1-Variables.ipynb @@ -197,7 +197,7 @@ " \n", " a += 4; // add 4 to the current value of a\n", " std::cout << \"a = \" << a << std::endl;\n", - " a *= 7; // multiply current value of a by 3\n", + " a *= 7; // multiply current value of a by 7\n", " std::cout << \"a = \" << a << std::endl;\n", " a /= 5; // divide a by 5 and assign the quotient to a\n", " std::cout << \"a = \" << a << std::endl;\n", -- GitLab