Why is this an issue?

To improve readability, identifier/label should be repeated at the end of each declaration/block.

How to fix it

Code examples

Noncompliant code example

module fly;
  ...
endmodule // Missing 'fly' identifier

package dream;
  ...
endpackage // Missing 'dream' identifier

Compliant solution

module fly;
  ...
endmodule : fly

package dream;
  ...
endpackage : dream