Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Wed, 06 Jan 2016 13:30:03 UTC Commit: 4a2890667e47af88212819e85061948f82788ad5 https://github.com/geany/geany/commit/4a2890667e47af88212819e85061948f82788a...
Log Message: ----------- vhdl: Fix a typo
This has no actual impact as the kind is not used anywhere anyway.
Part of #849.
Modified Paths: -------------- tagmanager/ctags/vhdl.c
Modified: tagmanager/ctags/vhdl.c 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -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" },
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).