From d9adac000631dbb4eecb2f00105cbaaaaf57ac7d Mon Sep 17 00:00:00 2001 From: Fredrik Date: Thu, 28 Nov 2024 14:26:20 +0200 Subject: [PATCH] Update Doxygen typos and RunFunction description (code change in 5f342c55ee32afd06305a9f4e31b0688149a46ff ) --- include/cling/Interpreter/Interpreter.h | 4 ++-- lib/Interpreter/LookupHelper.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/cling/Interpreter/Interpreter.h b/include/cling/Interpreter/Interpreter.h index 9c0bac1a44..1fa0c0d23d 100644 --- a/include/cling/Interpreter/Interpreter.h +++ b/include/cling/Interpreter/Interpreter.h @@ -310,7 +310,7 @@ namespace cling { ///\brief Runs given wrapper function. /// - ///\param [in] fname - The function name. + ///\param [in] FD - The function declaration. ///\param [in,out] res - The return result of the run function. Must be /// initialized to point to the return value's location if the /// expression result is an aggregate. @@ -580,7 +580,7 @@ namespace cling { /// /// @param[in] line - The input containing the string to be completed. /// @param[in] cursor - The offset for the completion point. - /// @param[out] completions - The results for teh completion + /// @param[out] completions - The results for the completion. /// ///\returns Whether the operation was fully successful. /// diff --git a/lib/Interpreter/LookupHelper.cpp b/lib/Interpreter/LookupHelper.cpp index ca57a0291a..64ba9b93ac 100644 --- a/lib/Interpreter/LookupHelper.cpp +++ b/lib/Interpreter/LookupHelper.cpp @@ -192,7 +192,7 @@ namespace cling { ///\brief Look for a tag decl based on its name /// - ///\param declName name of the class, enum, uniorn or namespace being + ///\param declName name of the class, enum, union or namespace being /// looked for ///\param resultDecl pointer that will be updated with the answer ///\param P Parse to use for the search @@ -358,7 +358,7 @@ namespace cling { ///\brief Look for a tag decl based on its name /// - ///\param typeName name of the class, enum, uniorn or namespace being + ///\param typeName name of the class, enum, union or namespace being /// looked for ///\param resultType reference to QualType that will be updated with the answer ///\param P Parse to use for the search