Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenBarre committed Sep 21, 2017
1 parent 4ee9c84 commit 28525be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/writing/structure.rst
Expand Up @@ -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
Expand Down

0 comments on commit 28525be

Please sign in to comment.