From deb6b3e054aa092e2bfacc5877cffc53a89b9be1 Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Thu, 4 Jul 2024 12:26:17 +0200 Subject: [PATCH] Fix typo in README (#294) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db80dbf..e02bbc2 100644 --- a/README.md +++ b/README.md @@ -211,7 +211,7 @@ type = "datetime.datetime" ### Example with fully custom type -In this example scalar is represented as class `TypeB`. Pydantic can\`t handle serialization and deserialization so custom `parse` and `serialize` is necessary. To provide `type`, `parse` and `serialize` implementation we can use `files_to_include` to copy `type_b.py` file. +In this example scalar is represented as class `TypeB`. Pydantic can't handle serialization and deserialization so custom `parse` and `serialize` is necessary. To provide `type`, `parse` and `serialize` implementation we can use `files_to_include` to copy `type_b.py` file. ```toml [tool.ariadne-codegen]