Skip to content

Commit 2155d91

Browse files
authored
italic literal *op=*
1 parent c95ba00 commit 2155d91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ a += [5, 6, 7, 8]
858858

859859
#### 💡 Explanation:
860860

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.
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.
862862

863863
* The expression `a = a + [5,6,7,8]` generates a new list and sets `a`'s reference to that new list, leaving `b` unchanged.
864864

0 commit comments

Comments
 (0)