codemaker/source/pythonmaker/pythontype.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 3cc8e28a9b1155da07a16f46c85c8e128bf293a9 Author: Andrea Gelmini <[email protected]> AuthorDate: Fri Aug 29 13:48:42 2025 +0200 Commit: Julien Nabet <[email protected]> CommitDate: Wed Sep 3 08:39:13 2025 +0200 Fix typo Change-Id: I7b390e9a1a102f0f37eab2459ea8f229bfb58198 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/190363 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/codemaker/source/pythonmaker/pythontype.cxx b/codemaker/source/pythonmaker/pythontype.cxx index db33afee195e..2ebb04280ce8 100644 --- a/codemaker/source/pythonmaker/pythontype.cxx +++ b/codemaker/source/pythonmaker/pythontype.cxx @@ -61,8 +61,8 @@ OString generateImportStatementLocal(std::string_view fromModule, std::string_vi } } -//If idl has same varialbe name as a python keywords this function adds a '_' after it to avoid error. -// e.g varialbe 'and' changes to 'and_' +//If idl has same variable name as a python keywords this function adds a '_' after it to avoid error. +// e.g variable 'and' changes to 'and_' OString getSafePythonIdentifier(const OString& unoIdentifier) { if (PYTHON_KEYWORDS.count(unoIdentifier)) @@ -1217,7 +1217,7 @@ void PythonStubGenerator::generateSingleton(unoidl::InterfaceBasedSingletonEntit dedent(); } -// Functions resposible for the indentation and dedentation of the python stubs. +// Functions responsible for the indentation and dedentation of the python stubs. void PythonStubGenerator::indent() { m_indentLevel++; } void PythonStubGenerator::dedent() {
