From 62f9e244eded8f1701ba9345fb62ca83fb0f046c Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Mon, 25 Oct 2021 14:45:34 -0700 Subject: [PATCH] Fix word --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b76a93..b25c768 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ Redis OM uses [Pydantic](pydantic-url) to validate data based on the type annota This validation ensures that fields like `first_name`, which the `Customer` model marked as a `str`, are always strings. **But every Redis OM model is also a Pydantic model**, so you can use Pydantic validators like `EmailStr`, `Pattern`, and many more for complex validations! -For example, because we used the `EmailStr` type for the `email` field, we'll get a validation error if we try to save a `Customer` with an invalid email address: +For example, because we used the `EmailStr` type for the `email` field, we'll get a validation error if we try to create a `Customer` with an invalid email address: ```python Customer(