From 4a2890667e47af88212819e85061948f82788ad5 Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Wed, 6 Jan 2016 14:30:03 +0100 Subject: [PATCH] vhdl: Fix a typo This has no actual impact as the kind is not used anywhere anyway. Part of #849. --- tagmanager/ctags/vhdl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tagmanager/ctags/vhdl.c b/tagmanager/ctags/vhdl.c index 7e67bc3d..467543a8 100644 --- a/tagmanager/ctags/vhdl.c +++ b/tagmanager/ctags/vhdl.c @@ -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" },