diff -r 9fce9cfcbfda -r dab20c39f08c Plugins/CheckerPlugins/CodeStyleChecker/NamingStyleChecker.py --- a/Plugins/CheckerPlugins/CodeStyleChecker/NamingStyleChecker.py Tue Mar 07 18:25:42 2017 +0100 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/NamingStyleChecker.py Tue Mar 07 18:42:41 2017 +0100 @@ -51,7 +51,7 @@ (self.__checkNameToBeAvoided, ("N831",)), ], "functiondef": [ - (self.__checkFuntionName, ("N802",)), + (self.__checkFunctionName, ("N802",)), (self.__checkFunctionArgumentNames, ("N803", "N804", "N805", "N806")), (self.__checkNameToBeAvoided, ("N831",)), @@ -291,7 +291,7 @@ if not self.CamelcaseRegexp.match(node.name): yield self.__error(node, "N801") - def __checkFuntionName(self, node, parents): + def __checkFunctionName(self, node, parents): """ Private class to check the given node for function name conventions (N802).