From a6c049566d15924610fbccaa68d97b793b335f0f Mon Sep 17 00:00:00 2001 From: shrit Date: Mon, 13 Jul 2020 10:43:11 +0200 Subject: [PATCH 1/2] Remove extra white space Co-authored-by: Marcus Edel --- src/mlpack/bindings/cli/map_parameter_name.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlpack/bindings/cli/map_parameter_name.hpp b/src/mlpack/bindings/cli/map_parameter_name.hpp index 2aaefdebdd..1835bd5602 100644 --- a/src/mlpack/bindings/cli/map_parameter_name.hpp +++ b/src/mlpack/bindings/cli/map_parameter_name.hpp @@ -54,7 +54,7 @@ std::string MapParameterName( /** * Map the parameter name to the name seen by CLI. - * + * * @param d Parameter data. * @param * (input) Unused parameter. * @param output Pointer to std::string that will hold the mapped name. From 6448cd11f0d56ee4be568051ae102ed521558f0f Mon Sep 17 00:00:00 2001 From: shrit Date: Mon, 13 Jul 2020 13:39:03 +0200 Subject: [PATCH 2/2] Correct wrong regexp Co-authored-by: Yashwant Singh Parihar --- doc/guide/bindings.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guide/bindings.hpp b/doc/guide/bindings.hpp index 8ace9649e9..c7bac2648b 100644 --- a/doc/guide/bindings.hpp +++ b/doc/guide/bindings.hpp @@ -865,7 +865,7 @@ The code for the command-line bindings is found in @c src/mlpack/bindings/cli. @subsection bindings_cli_mlpack_main mlpackMain() definition Any command-line program must be compiled with the @c BINDING_TYPE macro -set to the value @c BINDING_TYPE_IO. This is handled by the CMake macro +set to the value @c BINDING_TYPE_CLI. This is handled by the CMake macro @c add_cli_executable(). When @c BINDING_TYPE is set to @c BINDING_TYPE_IO, the following is set in