We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42cf834 commit 88e2462Copy full SHA for 88e2462
docs/checks/prefer-case-to-elseif.md
@@ -1,5 +1,3 @@
1
-# code pal for ABAP
2
-
3
[code pal for ABAP](../../README.md) > [Documentation](../check_documentation.md) > [Prefer CASE to ELSE IF](prefer-case-to-elseif.md)
4
5
## Prefer CASE to ELSE IF
@@ -16,7 +14,7 @@ Use `CASE` insead of `ELSEIF` for multiple alternative conditions.
16
14
17
15
### What to do in case of exception?
18
19
-You can suppress Code Inspector findings generated by this check using the pseudo comment `"#EC PREFER_CASE`.
+In exceptional cases, you can suppress this finding by using the pseudo comment `"#EC PREFER_CASE`.
20
21
```abap
22
IF type = type-some_type. "#EC PREFER_CASE
0 commit comments