diff --git a/analyzers/rspec/cs/S1186.html b/analyzers/rspec/cs/S1186.html index 1edf67f749f..343dd923565 100644 --- a/analyzers/rspec/cs/S1186.html +++ b/analyzers/rspec/cs/S1186.html @@ -12,7 +12,7 @@

Why is this an issue?

void DoSomething() => // Compliant throw new NotSupportedException(); -
  • The method will be implemented in the future. You can make clear the initial intention to add an implementation in the future by throwing the NotSupportedException.
    +  
  • The method will be implemented in the future. You can make clear the initial intention to add an implementation in the future by throwing the NotImplementedException.
     void DoSomething() => // Compliant
         throw new NotImplementedException();