There was an error while loading. Please reload this page.
op=
1 parent c95ba00 commit 2155d91Copy full SHA for 2155d91
1 file changed
README.md
@@ -858,7 +858,7 @@ a += [5, 6, 7, 8]
858
859
#### 💡 Explanation:
860
861
-* `a += b` doesn't always behave the same way as `a = a + b`. Classes *may* implement the op= operators differently, and lists do this.
+* `a += b` doesn't always behave the same way as `a = a + b`. Classes *may* implement the *`op=`* operators differently, and lists do this.
862
863
* The expression `a = a + [5,6,7,8]` generates a new list and sets `a`'s reference to that new list, leaving `b` unchanged.
864
0 commit comments