diff --git a/docs/faq.md b/docs/faq.md index 47392c0..b0ebc67 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.