vhdl: Fix a typo

This has no actual impact as the kind is not used anywhere anyway.

Part of #849.
This commit is contained in:
Colomban Wendling 2016-01-06 14:30:03 +01:00
parent 001fd5c52f
commit 4a2890667e

View File

@ -34,7 +34,7 @@ typedef enum {
K_CONSTANT,
K_TYPE,
K_VARIABLE,
K_ATRIBUTE,
K_ATTRIBUTE,
K_SIGNAL,
K_FUNCTION,
K_PROCEDURE,
@ -68,7 +68,7 @@ static kindOption VhdlKinds [] = {
{ TRUE, 'c', "variable", "constants" },
{ TRUE, 't', "typedef", "types" },
{ TRUE, 'v', "variable", "variables" },
{ TRUE, 'a', "atribute", "atributes" },
{ TRUE, 'a', "attribute", "attributes" },
{ TRUE, 's', "variable", "signals" },
{ TRUE, 'f', "function", "functions" },
{ TRUE, 'p', "function", "procedure" },