From 28525be1c183357497916f9acaec894048baed91 Mon Sep 17 00:00:00 2001 From: Steven Barre Date: Thu, 21 Sep 2017 16:40:58 -0700 Subject: [PATCH] Typo fix --- docs/writing/structure.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing/structure.rst b/docs/writing/structure.rst index fbea0e5bc..874f5f367 100644 --- a/docs/writing/structure.rst +++ b/docs/writing/structure.rst @@ -774,7 +774,7 @@ compute x + 1, you have to create another integer and give it a name. my_list = [1, 2, 3] my_list[0] = 4 - print my_list # [4, 2, 3] <- The same list as changed + print my_list # [4, 2, 3] <- The same list has changed x = 6 x = x + 1 # The new x is another object