From ac7f6a0bb3b7a0069b9543ad1e4feeee4c809983 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jure=20=C5=A0orn?= <sornjure@gmail.com>
Date: Tue, 29 Jan 2019 18:50:38 +0100
Subject: [PATCH] Format, Decorator, Class

---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 948677e..1a6bdbb 100644
--- a/README.md
+++ b/README.md
@@ -703,8 +703,8 @@ class Employee(Person):
 ```
 
 ### Comparable
-* **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.**
+* **If eq() method is not overridden, it returns `'id(self) == id(other)'`, which is the same as `'self is other'`.**
+* **That means all objects compare not equal by default.**
 
 ```python
 class MyComparable: