diff --git a/documentation/SA1130.md b/documentation/SA1130.md index 7e0dbe70b..75421e241 100644 --- a/documentation/SA1130.md +++ b/documentation/SA1130.md @@ -71,5 +71,5 @@ To fix a violation of this rule, replace the anonymous function with an equivale ```csharp #pragma warning disable SA1130 // Use lambda syntax Action a = delegate { x = 0; }; -#pragma warning restore SA1128 // Use lambda syntax +#pragma warning restore SA1130 // Use lambda syntax ```