Sun, 27 Jun 2021 12:41:19 +0200
Corrected some typos.
--- a/eric7/DebugClients/Python/DebugBase.py Sun Jun 27 11:22:03 2021 +0200 +++ b/eric7/DebugClients/Python/DebugBase.py Sun Jun 27 12:41:19 2021 +0200 @@ -592,7 +592,7 @@ def move_instruction_pointer(self, lineno): """ - Public methode to move the instruction pointer to another line. + Public method to move the instruction pointer to another line. @param lineno new line number @type int
--- a/eric7/DebugClients/Python/DebugClientBase.py Sun Jun 27 11:22:03 2021 +0200 +++ b/eric7/DebugClients/Python/DebugClientBase.py Sun Jun 27 12:41:19 2021 +0200 @@ -1967,7 +1967,7 @@ Private method to create a completions list. @param text text to complete (string) - @param completer completer methode + @param completer completer method @param completions set where to add new completions strings (set) """ state = 0
--- a/eric7/Documentation/Source/eric7.DebugClients.Python.DebugBase.html Sun Jun 27 11:22:03 2021 +0200 +++ b/eric7/Documentation/Source/eric7.DebugClients.Python.DebugBase.html Sun Jun 27 12:41:19 2021 +0200 @@ -157,7 +157,7 @@ </tr> <tr> <td><a href="#DebugBase.move_instruction_pointer">move_instruction_pointer</a></td> -<td>Public methode to move the instruction pointer to another line.</td> +<td>Public method to move the instruction pointer to another line.</td> </tr> <tr> <td><a href="#DebugBase.profile">profile</a></td> @@ -673,7 +673,7 @@ <b>move_instruction_pointer</b>(<i>lineno</i>) <p> - Public methode to move the instruction pointer to another line. + Public method to move the instruction pointer to another line. </p> <dl>
--- a/eric7/Documentation/Source/eric7.DebugClients.Python.DebugClientBase.html Sun Jun 27 11:22:03 2021 +0200 +++ b/eric7/Documentation/Source/eric7.DebugClients.Python.DebugClientBase.html Sun Jun 27 12:41:19 2021 +0200 @@ -598,7 +598,7 @@ </dd> <dt><i>completer</i></dt> <dd> -completer methode +completer method </dd> <dt><i>completions</i></dt> <dd>
--- a/eric7/Documentation/Source/eric7.PluginManager.PluginManager.html Sun Jun 27 11:22:03 2021 +0200 +++ b/eric7/Documentation/Source/eric7.PluginManager.PluginManager.html Sun Jun 27 12:41:19 2021 +0200 @@ -251,7 +251,7 @@ </tr> <tr> <td><a href="#PluginManager.isValidPluginName">isValidPluginName</a></td> -<td>Public methode to check, if a file name is a valid plugin name.</td> +<td>Public method to check, if a file name is a valid plugin name.</td> </tr> <tr> <td><a href="#PluginManager.loadDocumentationSetPlugins">loadDocumentationSetPlugins</a></td> @@ -1043,7 +1043,7 @@ <b>isValidPluginName</b>(<i>pluginName</i>) <p> - Public methode to check, if a file name is a valid plugin name. + Public method to check, if a file name is a valid plugin name. </p> <p> Plugin modules must start with "Plugin" and have the extension ".py".
--- a/eric7/Documentation/Source/eric7.Plugins.CheckerPlugins.SyntaxChecker.SyntaxCheckService.html Sun Jun 27 11:22:03 2021 +0200 +++ b/eric7/Documentation/Source/eric7.Plugins.CheckerPlugins.SyntaxChecker.SyntaxCheckService.html Sun Jun 27 12:41:19 2021 +0200 @@ -97,7 +97,7 @@ </tr> <tr> <td><a href="#SyntaxCheckService.__determineLanguage">__determineLanguage</a></td> -<td>Private methode to determine the language of the file.</td> +<td>Private method to determine the language of the file.</td> </tr> <tr> <td><a href="#SyntaxCheckService.__serviceError">__serviceError</a></td> @@ -174,7 +174,7 @@ <b>__determineLanguage</b>(<i>filename, source</i>) <p> - Private methode to determine the language of the file. + Private method to determine the language of the file. </p> <dl>
--- a/eric7/Documentation/Source/eric7.Plugins.PluginSyntaxChecker.html Sun Jun 27 11:22:03 2021 +0200 +++ b/eric7/Documentation/Source/eric7.Plugins.PluginSyntaxChecker.html Sun Jun 27 12:41:19 2021 +0200 @@ -90,7 +90,7 @@ </tr> <tr> <td><a href="#SyntaxCheckerPlugin.__getPythonOptions">__getPythonOptions</a></td> -<td>Private methode to determine the syntax check options.</td> +<td>Private method to determine the syntax check options.</td> </tr> <tr> <td><a href="#SyntaxCheckerPlugin.__initialize">__initialize</a></td> @@ -209,7 +209,7 @@ <b>__getPythonOptions</b>(<i></i>) <p> - Private methode to determine the syntax check options. + Private method to determine the syntax check options. </p> <dl> <dt>Return:</dt>
--- a/eric7/Documentation/Source/eric7.PyUnit.UnittestDialog.html Sun Jun 27 11:22:03 2021 +0200 +++ b/eric7/Documentation/Source/eric7.PyUnit.UnittestDialog.html Sun Jun 27 12:41:19 2021 +0200 @@ -330,7 +330,7 @@ </tr> <tr> <td><a href="#UnittestDialog.__setProgressColor">__setProgressColor</a></td> -<td>Private methode to set the color of the progress color label.</td> +<td>Private method to set the color of the progress color label.</td> </tr> <tr> <td><a href="#UnittestDialog.__setRunningMode">__setRunningMode</a></td> @@ -673,7 +673,7 @@ <b>__setProgressColor</b>(<i>color</i>) <p> - Private methode to set the color of the progress color label. + Private method to set the color of the progress color label. </p> <dl>
--- a/eric7/PluginManager/PluginManager.py Sun Jun 27 11:22:03 2021 +0200 +++ b/eric7/PluginManager/PluginManager.py Sun Jun 27 12:41:19 2021 +0200 @@ -282,7 +282,7 @@ def isValidPluginName(self, pluginName): """ - Public methode to check, if a file name is a valid plugin name. + Public method to check, if a file name is a valid plugin name. Plugin modules must start with "Plugin" and have the extension ".py".
--- a/eric7/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckService.py Sun Jun 27 11:22:03 2021 +0200 +++ b/eric7/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckService.py Sun Jun 27 12:41:19 2021 +0200 @@ -45,7 +45,7 @@ def __determineLanguage(self, filename, source): """ - Private methode to determine the language of the file. + Private method to determine the language of the file. @param filename of the sourcefile (str) @param source code of the file (str)
--- a/eric7/Plugins/PluginSyntaxChecker.py Sun Jun 27 11:22:03 2021 +0200 +++ b/eric7/Plugins/PluginSyntaxChecker.py Sun Jun 27 12:41:19 2021 +0200 @@ -128,7 +128,7 @@ def __getPythonOptions(self): """ - Private methode to determine the syntax check options. + Private method to determine the syntax check options. @return state of checkFlakes and ignoreStarImportWarnings (bool, bool) """
--- a/eric7/PyUnit/UnittestDialog.py Sun Jun 27 11:22:03 2021 +0200 +++ b/eric7/PyUnit/UnittestDialog.py Sun Jun 27 12:41:19 2021 +0200 @@ -217,7 +217,7 @@ def __setProgressColor(self, color): """ - Private methode to set the color of the progress color label. + Private method to set the color of the progress color label. @param color colour to be shown (string) """