Skip to content

Latest commit

 

History

History
47 lines (25 loc) · 792 Bytes

element_association_rules.rst

File metadata and controls

47 lines (25 loc) · 792 Bytes

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.

|configuring_whitespace_rules_link|

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.

|configuring_whitespace_rules_link|

Violation

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

Fix

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