From 40f7740a57d32d70c51d057041ad1669b2365b38 Mon Sep 17 00:00:00 2001 From: Gregory Paidis Date: Wed, 15 Feb 2023 13:39:31 +0100 Subject: [PATCH] Small formatting change on S2198 --- rules/S2198/csharp/rule.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/S2198/csharp/rule.adoc b/rules/S2198/csharp/rule.adoc index 201a15ee05a..e7708f030e5 100644 --- a/rules/S2198/csharp/rule.adoc +++ b/rules/S2198/csharp/rule.adoc @@ -1,6 +1,6 @@ Certain mathematical comparisons will always return the same value, and should simply not be made. -These comparisons will always return `false`: +These comparisons will return either always `true` or always `false` depending on the kind of comparison: * Comparing a `char` with a numeric constant that is outside of the range of `char`. * Comparing a `float` with a numeric constant that is outside of the range of `float`.