From 07b058e3c1721bd320b5ec718f5f1f94a42de7c7 Mon Sep 17 00:00:00 2001 From: Vincent Poulailleau Date: Wed, 3 Feb 2021 09:27:05 +0100 Subject: [PATCH] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc75dc7..9614e3b 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ How would new API look like with this concept? >>> from classes import typeclass >>> @typeclass ... def to_json(instance) -> str: -... """This is a typeclass definition to covert things to json.""" +... """This is a typeclass definition to convert things to json.""" ... >>> @to_json.instance(int) ... @to_json.instance(float)