Skip to content

Commit 9198fb5

Browse files
authored
Correcting typo of the word "memory"
1 parent a278125 commit 9198fb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Part 1/Section 03 - Variables and Memory/08 - Shared References and Mutability.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@
286286
"\n",
287287
"This is safe for Python to do because integer objects are **immutable**. \n",
288288
"\n",
289-
"So, even though *a* and *b* initially shared the same mempry address, we can never modify *a*'s value by \"modifying\" *b*'s value. \n",
289+
"So, even though *a* and *b* initially shared the same memory address, we can never modify *a*'s value by \"modifying\" *b*'s value. \n",
290290
"\n",
291291
"The only way to change *b*'s value is to change it's reference, which will never affect *a*."
292292
]

0 commit comments

Comments
 (0)