Why is this an issue?

This rule checks if there are multiple statements on one line.

How to fix it

Code examples

Noncompliant code example

if rising_edge(clk) then
  dream <= fly; ride <= run; -- Noncompliant: Two statements on the same line
end if;

Compliant solution

if rising_edge(clk) then
  dream <= fly;
  ride <= run;
end if;