From 937929e51392c52ccafd1576b919ad39335ba1ed Mon Sep 17 00:00:00 2001 From: ROUVREAU Vincent <vincent.rouvreau@inria.fr> Date: Fri, 7 May 2021 09:17:28 +0200 Subject: [PATCH] Typo --- 1-ProceduralProgramming/3-Types.ipynb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/1-ProceduralProgramming/3-Types.ipynb b/1-ProceduralProgramming/3-Types.ipynb index d030600..20c80a5 100644 --- a/1-ProceduralProgramming/3-Types.ipynb +++ b/1-ProceduralProgramming/3-Types.ipynb @@ -41,7 +41,7 @@ "bool undefined; // UNDEFINED !! \n", "if (undefined)\n", " std::cout << \"This text might appear or not - it's truly undefined and may vary from \"\n", - " \"one run/compiler/architecture/etc... to another!\" << std::endl;`" + " \"one run/compiler/architecture/etc... to another!\" << std::endl;" ] }, { @@ -441,7 +441,6 @@ "source": [ "{\n", " float f = 1.12345678901234567890;\n", - " double d = 2.12345678901234567890;\n", " double d_f { f }; // OK\n", "}" ] -- GitLab