From 2155d917dfe211c2410b85e0fb69f1e4efd3d110 Mon Sep 17 00:00:00 2001 From: Beni Cherniavsky-Paskin Date: Wed, 6 Sep 2017 11:30:25 +0300 Subject: [PATCH] italic literal *`op=`* --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ed6c73..c3629d5 100755 --- a/README.md +++ b/README.md @@ -858,7 +858,7 @@ a += [5, 6, 7, 8] #### 💡 Explanation: -* `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. * The expression `a = a + [5,6,7,8]` generates a new list and sets `a`'s reference to that new list, leaving `b` unchanged.