Wait Rules

wait_001

phase_4 error indent

This rule checks for indentation of the wait keyword. Proper indentation enhances comprehension.

Violation

begin

    wait for 10ns;
 wait on a,b;
       wait until a = '0';

Fix

begin

  wait for 10ns;
  wait on a,b;
  wait until a = '0';