From 348057ba81b960b9c80a68cff6c362c85ee4cbf3 Mon Sep 17 00:00:00 2001 From: Caleb Lloyd <2414837+caleblloyd@users.noreply.github.com> Date: Mon, 2 Dec 2024 08:02:00 -0500 Subject: [PATCH] fix typo in docs queryable-projections.mdx --- docs/docs/configuration/queryable-projections.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/configuration/queryable-projections.mdx b/docs/docs/configuration/queryable-projections.mdx index d433684777..3da049e256 100644 --- a/docs/docs/configuration/queryable-projections.mdx +++ b/docs/docs/configuration/queryable-projections.mdx @@ -92,7 +92,7 @@ public static partial class CarMapper // highlight-start private static string MapCarBrandName(CarBrand brand) - => band.Name; + => brand.Name; // highlight-end } ```