diff --git a/docs/fundamentals/code-analysis/quality-rules/ca2208.md b/docs/fundamentals/code-analysis/quality-rules/ca2208.md index 4647e58ed041d..2a2e59b6cb053 100644 --- a/docs/fundamentals/code-analysis/quality-rules/ca2208.md +++ b/docs/fundamentals/code-analysis/quality-rules/ca2208.md @@ -55,10 +55,6 @@ To fix a violation of this rule, call a constructor that takes a message, a para > A code fix is available in Visual Studio for incorrectly positioned parameter names. To use it, position the cursor on the warning row and press Ctrl+. (period). Choose **Swap the arguments order** from the list of options that's presented. > > ![Code fix for CA2208 - swap arguments.](media/ca2208-codefix_swap.png) -> -> If a parameter name instead of a message is passed to the method, the fixer provides the option to switch to the two-argument constructor instead. -> -> ![Code fix for CA2208 - switch to two-argument constructor.](media/ca2208-codefix_null_msg.png) ## When to suppress warnings diff --git a/docs/fundamentals/code-analysis/quality-rules/media/ca2208-codefix_null_msg.png b/docs/fundamentals/code-analysis/quality-rules/media/ca2208-codefix_null_msg.png deleted file mode 100644 index 4cf88cb1c19bd..0000000000000 Binary files a/docs/fundamentals/code-analysis/quality-rules/media/ca2208-codefix_null_msg.png and /dev/null differ diff --git a/docs/fundamentals/code-analysis/quality-rules/media/ca2208-codefix_swap.png b/docs/fundamentals/code-analysis/quality-rules/media/ca2208-codefix_swap.png index b22d162f10e09..69c61c94a81e1 100644 Binary files a/docs/fundamentals/code-analysis/quality-rules/media/ca2208-codefix_swap.png and b/docs/fundamentals/code-analysis/quality-rules/media/ca2208-codefix_swap.png differ