--- a/eric6/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py Sat Dec 19 15:06:20 2020 +0100 +++ b/eric6/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py Sat Dec 19 15:22:26 2020 +0100 @@ -71,9 +71,9 @@ comment. @param line line to extract flags from (string) - @keyparam startComment string identifying the start of the comment (string) - @keyparam endComment string identifying the end of a comment (string) - @keyparam flagsLine flag indicating to check for a flags only line (bool) + @param startComment string identifying the start of the comment (string) + @param endComment string identifying the end of a comment (string) + @param flagsLine flag indicating to check for a flags only line (bool) @return list containing the extracted flags (list of strings) """ flags = [] @@ -102,8 +102,8 @@ @param filename source filename (string) @param codestring string containing the code to compile (string) - @keyparam checkFlakes flag indicating to do a pyflakes check (boolean) - @keyparam ignoreStarImportWarnings flag indicating to + @param checkFlakes flag indicating to do a pyflakes check (boolean) + @param ignoreStarImportWarnings flag indicating to ignore 'star import' warnings (boolean) @return dictionary with the keys 'error' and 'warnings' which hold a list containing details about the error/ warnings @@ -209,8 +209,8 @@ @param filename source filename (string) @param codestring string containing the code to compile (string) - @keyparam checkFlakes flag indicating to do a pyflakes check (boolean) - @keyparam ignoreStarImportWarnings flag indicating to + @param checkFlakes flag indicating to do a pyflakes check (boolean) + @param ignoreStarImportWarnings flag indicating to ignore 'star import' warnings (boolean) @return dictionary with the keys 'error' and 'warnings' which hold a list containing details about the error/ warnings