From 2b9488d75b728cff9dd9e387cf334d4e49d81b05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 28 Jan 2019 12:15:00 +0100 Subject: [PATCH] Hashable --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e9a07ac..a788729 100644 --- a/README.md +++ b/README.md @@ -636,7 +636,7 @@ class Employee(Person): ``` ### Comparable -**If eq() method is not overriden, it returns `'id(self) == id(other)'`, which is the same as `'self is other'`, meaning all objects compare not equal by default.** +**If eq() method is not overridden, it returns `'id(self) == id(other)'`, which is the same as `'self is other'`, meaning all objects compare not equal by default.** ```python class MyComparable: