From 2f35e863679e18183d100c8efa7369fcf57618b8 Mon Sep 17 00:00:00 2001 From: Yuri Khan Date: Wed, 1 Jul 2020 16:26:21 +0700 Subject: [PATCH] Fix typo (#1631) --- docs/usage/schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/schema.md b/docs/usage/schema.md index 7cf7e565ee..dff86bbc10 100644 --- a/docs/usage/schema.md +++ b/docs/usage/schema.md @@ -81,7 +81,7 @@ It has the following arguments: either explicitly anchor your regular expressions with `^` (e.g. `^foo` to match any string starting with `foo`), or explicitly allow an arbitrary prefix with `.*?` - (e.g. `.*?foo` to match any string containig the substring `foo`). + (e.g. `.*?foo` to match any string containing the substring `foo`). See [#1631](https://github.com/samuelcolvin/pydantic/issues/1631) for a discussion of possible changes to *pydantic* behavior in **v2**.