From 83c047ec16da25ad53c2a30b37cbbf9e9c0c9cbd Mon Sep 17 00:00:00 2001 From: RGBCube <78925721+RGBCube@users.noreply.github.com> Date: Sat, 15 Jan 2022 15:27:43 +0300 Subject: [PATCH] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ed1bc6f..fea06a0 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Deletes everything in the JSON. Use with caution. # Examples -# `db.set("test", 123)` +## `db.set("test", 123)` Code ```python from db import ClutterDB @@ -38,7 +38,7 @@ print(data) ``` Output `{'test': 123}` -# `db.rem("test")` +## `db.rem("test")` Code ```python from db import ClutterDB @@ -55,7 +55,8 @@ db.rem("test") data = db.all() -print(data)``` +print(data) +``` Output `{'test': 123} {}`