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 66f4694 commit b5ef5f6Copy full SHA for b5ef5f6
docs/checks/number-public-attributes.md
@@ -23,11 +23,11 @@ Make those attributes `PRIVATE` or `PROTECTED`. You can grant the read access wi
23
### What to do in case of exception?
24
25
You can suppress Code Inspector findings generated by this check using the pseudo comment `"#EC NUM_PUBLIC_ATTR`.
26
-The pseudo comment must be placed right after the class definition header.
+The pseudo comment must be placed right after the `PUBLIC SECTION` statement.
27
28
```abap
29
-CLASS class_name DEFINITION. "#EC NUM_PUBLIC_ATTR
30
- PUBLIC SECTION.
+CLASS class_name DEFINITION.
+ PUBLIC SECTION. "#EC NUM_PUBLIC_ATTR
31
DATA attribute1 TYPE i.
32
DATA attribute2 TYPE i.
33
ENDCLASS.
0 commit comments