Skip to content

Latest commit

 

History

History
43 lines (23 loc) · 720 Bytes

element_association_rules.rst

File metadata and controls

43 lines (23 loc) · 720 Bytes

Element Association Rules

element_association_100

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

Violation

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

Fix

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

element_association_101

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

Violation

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

Fix

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