From 4b25ebc0a4dc134a09d69254e178107f6c2c96fe Mon Sep 17 00:00:00 2001 From: nalka0 <30848600+nalka0@users.noreply.github.com> Date: Mon, 31 Jul 2023 10:55:22 +0200 Subject: [PATCH] Fix copy paste in S1186 docs (#7587) --- analyzers/rspec/cs/S1186.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();