From 268d13ca2bad8af7ffdbeeef1627a341aff20f7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Mon, 18 Oct 2021 09:33:36 +0200 Subject: [PATCH] Minor README update --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 63ae93b..d096da9 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ In other words, it records the results of important functions between executions Example usage: -``` +```python import pandas as pd from keepit import keepit @@ -31,7 +31,7 @@ expensive_function(number=1) # Files are specific to each parameter execution, # so this will again take a long time: expensive_function(number=42) -# After this, we should have two files, one for number=1, +# After this, we should have two files: one for number=1, # and another one for number=42. ```