Wait Rules
wait_001
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';