From aac0caa747303ea5f102e936aae018a0a8fb63fa Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Fri, 18 Oct 2024 11:58:42 -0700 Subject: [PATCH] Fix extremely minor typo in FAQ --- docs/faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq.md b/docs/faq.md index 47392c04..b0ebc67e 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -6,7 +6,7 @@ ## How does this work? -Tye build SDK from .NET 8 onwards includes support for "interceptors", which are a mechanism for emitting code during build that redirects method calls. In +The build SDK from .NET 8 onwards includes support for "interceptors", which are a mechanism for emitting code during build that redirects method calls. In the case of Dapper, this means we can replace the `QuerySingleOrDefault(...)` call (above) and replace it with a generated method that has a compatible signature and behaves as we expect, but: using code generated entirely at build time. Making existing code compatible with AOT is one of the main goals of "interceptors", so: we're not doing anything unexpected here.