From 683d439a68c4b19a98a061101ac1d8415a32c27f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jure=20=C5=A0orn?= <sornjure@gmail.com>
Date: Fri, 15 Mar 2019 01:45:53 +0100
Subject: [PATCH] Datetime fix

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 8e351c3..7d602e7 100644
--- a/README.md
+++ b/README.md
@@ -457,7 +457,7 @@ from itertools import product, combinations, combinations_with_replacement, perm
 Datetime
 --------
 * **Module 'datetime' provides 'date' `<D>`, 'time' `<T>`, 'datetime' `<DT>` and 'timedelta' `<TD>` classes, all of which are immutable and hashable.**
-* **Time and datetime can be 'aware' `<a>`, meaning they have defined timezone, or 'naive' `<n>`, meaning they don't.
+* **Time and datetime can be 'aware' `<a>`, meaning they have defined timezone, or 'naive' `<n>`, meaning they don't.**
 * **If object is naive it is presumed to be in system's timezone.**
 
 ```python