Element Association Rules

element_association_100

phase_2 error whitespace

This rule checks for a single space between the others keyword and the => in an element_association.

Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..

Violation

a <= (others=> (others    => '0'));

Fix

a <= (others => (others => '0'));

element_association_101

phase_2 error whitespace

This rule checks for a single space after the => in an element_association.

Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..

Violation

a <= (others =>(others =>     '0'));

Fix

a <= (others => (others => '0'));