summaryrefslogtreecommitdiffstats
path: root/Misc/cheatsheet
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/cheatsheet')
-rw-r--r--Misc/cheatsheet2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/cheatsheet b/Misc/cheatsheet
index 789e9c3..8c5ddcb 100644
--- a/Misc/cheatsheet
+++ b/Misc/cheatsheet
@@ -1106,7 +1106,7 @@ Exception>
Standard methods & operators redefinition in classes
Standard methods & operators map to special '__methods__' and thus may be
- redefined (mostly in in user-defined classes), e.g.:
+ redefined (mostly in user-defined classes), e.g.:
class x:
def __init__(self, v): self.value = v
def __add__(self, r): return self.value + r