Skip to content

Commit 66f4694

Browse files
authored
Update form-routine.md
1 parent 6aec70d commit 66f4694

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/checks/form-routine.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ Use classes and methods instead. Methods are similar to subroutines and can be u
2323
### What to do in case of exception?
2424

2525
You can suppress Code Inspector findings generated by this check using the pseudo comment `"#EC CI_FORM`.
26-
The pseudo comment must be placed right after the `ENDFORM`.
26+
The pseudo comment must be placed right after the `FORM` declaration.
2727

2828
```abap
29-
FORM my_form.
29+
FORM my_form. "#EC CI_FORM
3030
" Form content
31-
ENDFORM. "#EC CI_FORM
31+
ENDFORM.
3232
```
3333

3434
### Further Readings & Knowledge

0 commit comments

Comments
 (0)