Trailing comments should not be used. Comments are far better placed on the previous empty line of code, where they will be more visible and readable.
module fly; // This very long comment is better placed before the line of code. endmodule
// This very long comment is more visible and readable on its own line. module fly; endmodule