Skip to content

Commit e8d59a4

Browse files
authored
Merge pull request fbaptiste#46 from KanagarajNN/patch-2
Correcting typo of the word "memory"
2 parents a278125 + 9198fb5 commit e8d59a4

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)