rspec/rules/S2760/csharp/rule.adoc

54 lines
639 B
Plaintext
Raw Normal View History

2020-06-30 12:48:07 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
if (a == b)
{
doTheThing(b);
}
if (a == b) // Noncompliant; is this really what was intended?
{
doTheThing(c);
}
----
== Compliant Solution
----
if (a == b)
{
doTheThing(b);
doTheThing(c);
}
----
or
2020-06-30 12:48:07 +02:00
----
if (a == b)
{
doTheThing(b);
}
if (b == c)
{
doTheThing(c);
}
----
include::../exceptions.adoc[]
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
'''
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]