NL010: Keep code consistent
NL010: Keep code consistent
type: code-smell
priority: major
#convention
#confusing
Description
In Natural there are sometimes multiple names to the same thing that do not affect the result.
To keep the code style consistent prefer to do things the same way every time.
Example
#VAR := *OCC(#ARRAY)
#VAR := *OCCURRENCE(#ARRAY)
These to lines have the same result.