diff --git a/src/post/2024/lesser-known-operators-in-cs.md b/src/post/2024/lesser-known-operators-in-cs.md index 99bfe42..7a45537 100644 --- a/src/post/2024/lesser-known-operators-in-cs.md +++ b/src/post/2024/lesser-known-operators-in-cs.md @@ -165,4 +165,4 @@ For embedded applications, inlining functions often provides performance benefit Func Square = i -> i * i; Console.WriteLine(Square.Apply(9)); // prints "81", but efficiently -Inlining is not always possible or beneficial. Dynamic functions may not be able to be inlined at compile time and inlining marge methods may adversely affect assembly size. For these cases, C# 13 also provides the **thick lambda operator**, `≡>`. Thick lambdas are marked for JIT compilation by the CLR. This allows you to get performance benefits even when dynamically defining functions or loading assemblies. +Inlining is not always possible or beneficial. Dynamic functions may not be able to be inlined at compile time and inlining large methods may adversely affect assembly size. For these cases, C# 13 also provides the **thick lambda operator**, `≡>`. Thick lambdas are marked for JIT compilation by the CLR. This allows you to get performance benefits even when dynamically defining functions or loading assemblies.