From 2c3813ee6189a62a83d2a009c8d8a3940912b0da Mon Sep 17 00:00:00 2001 From: WaldoJeffers <7644970+WaldoJeffers@users.noreply.github.com> Date: Sat, 18 Nov 2023 02:47:39 +0100 Subject: [PATCH] Fix typo in the Data Filtering guide (#1731) Co-authored-by: Gabe Jackson <17556281+gj@users.noreply.github.com> --- docs/content/any/guides/data_filtering/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/any/guides/data_filtering/index.md b/docs/content/any/guides/data_filtering/index.md index d247b53b21..6c04ebe35d 100644 --- a/docs/content/any/guides/data_filtering/index.md +++ b/docs/content/any/guides/data_filtering/index.md @@ -96,7 +96,7 @@ A `{{% exampleGet "filterName" %}}` is a representation of a query. It is very s It has four fields: - `{{% exampleGet "filterRoot" %}}` Is the name of the type we are filtering. -- {{% exampleGet "filterRelations" %}} Are named relations to other types, typically turned into joins. +- `{{% exampleGet "filterRelations" %}}` Are named relations to other types, typically turned into joins. - `{{% exampleGet "filterConditions" %}}` Are the individual pieces of logic that must be true with respect to objects matching the filter. These typically get turned into where clauses. - `{{% exampleGet "filterTypes" %}}` Is a map from type names to user type information, including registered relations.