Skip to content

Commit 28525be

Browse files
authored
Typo fix
1 parent 4ee9c84 commit 28525be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/writing/structure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ compute x + 1, you have to create another integer and give it a name.
774774
775775
my_list = [1, 2, 3]
776776
my_list[0] = 4
777-
print my_list # [4, 2, 3] <- The same list as changed
777+
print my_list # [4, 2, 3] <- The same list has changed
778778
779779
x = 6
780780
x = x + 1 # The new x is another object

0 commit comments

Comments
 (0)