Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 851 Bytes

comment-position.md

File metadata and controls

35 lines (22 loc) · 851 Bytes

code pal for ABAP > Documentation > Comment Position

Comment Position

What is the Intent of the Check?

This check searches for "Quote comments" which are not indented along with the statements they belong to.

How to solve the issue?

You should indent the comments along with the statements they are commenting.

Example

Before the check:

" delegate pattern
  output = calculate_result( input ).
  output = calculate_result( input ). " delegate pattern

After the check:

  " delegate pattern
  output = calculate_result( input ).

Further Readings & Knowledge