diff --git a/proposals/csharp-9.0/function-pointers.md b/proposals/csharp-9.0/function-pointers.md index 087fd60..c3fe884 100644 --- a/proposals/csharp-9.0/function-pointers.md +++ b/proposals/csharp-9.0/function-pointers.md @@ -187,7 +187,7 @@ unsafe class Util { delegate* ptr1 = &Util.Log; // Error: type "delegate*" not compatible with "delegate*"; - + delegate* ptr2 = &Util.Log; } } ```