From bcf6a7c7c8fb6800664301927ee17e912937caa1 Mon Sep 17 00:00:00 2001 From: uthayakabilan <124994190+uthayakabilan@users.noreply.github.com> Date: Sun, 10 Mar 2024 22:16:15 +0530 Subject: [PATCH] docs: fix typo --- docs/guides/field-selection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/field-selection.md b/docs/guides/field-selection.md index 95141ac7..04da9481 100644 --- a/docs/guides/field-selection.md +++ b/docs/guides/field-selection.md @@ -40,7 +40,7 @@ The following table represents what each path would select in the above object: | Path | Selected value | | ----------------------------- | ------------------------------------- | | `name` | `"John McExpress"` | -| `address.work.country` | `"express-validator land"` | +| `addresses.work.country` | `"express-validator land"` | | `siblings` | `[{ "name": "Maria von Validator" }]` | | `siblings[0]` | `{ "name": "Maria von Validator" }` | | `siblings[0].name` | `"Maria von Validator"` |