From b5bbde8f3c94945cb3ccb200d81fd6cc527ab0b1 Mon Sep 17 00:00:00 2001 From: "Carlos A. Iglesias" Date: Thu, 16 Feb 2017 17:57:23 +0100 Subject: [PATCH] Correcter typo --- python/1_7_Variables.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/1_7_Variables.ipynb b/python/1_7_Variables.ipynb index 19c6418..70da46c 100644 --- a/python/1_7_Variables.ipynb +++ b/python/1_7_Variables.ipynb @@ -205,7 +205,7 @@ }, "outputs": [], "source": [ - "# Exercise inmutable type\n", + "# Exercise mutable type\n", "a = [1, 2, 3]\n", "b = a\n", "a.append(4)\n",