From 832a3e4e7a387f6e0cfdcbe41e11a93fe6cf68c6 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Wed, 15 May 2024 18:29:17 -0400 Subject: [PATCH] Fix name of output parameter in documentation. --- src/mlpack/methods/naive_bayes/nbc_main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mlpack/methods/naive_bayes/nbc_main.cpp b/src/mlpack/methods/naive_bayes/nbc_main.cpp index 571162c10f..4bd9205a4b 100644 --- a/src/mlpack/methods/naive_bayes/nbc_main.cpp +++ b/src/mlpack/methods/naive_bayes/nbc_main.cpp @@ -78,8 +78,8 @@ BINDING_EXAMPLE( "classes to " + PRINT_DATASET("predictions") + ", the following command " "may be used:" "\n\n" + - PRINT_CALL("nbc", "input_model", "nbc_model", "test", "test_set", "output", - "predictions")); + PRINT_CALL("nbc", "input_model", "nbc_model", "test", "test_set", + "predictions", "predictions")); // See also... BINDING_SEE_ALSO("@softmax_regression", "#softmax_regression");