From ac89b49e27e7f3df8c23cd92249ff6a44a4be7ef Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Tue, 30 Jan 2018 19:06:31 -0500 Subject: [PATCH] Minor comment fixes. --- src/mlpack/bindings/python/print_input_processing.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mlpack/bindings/python/print_input_processing.hpp b/src/mlpack/bindings/python/print_input_processing.hpp index bb688ad463..3cdf096c0e 100644 --- a/src/mlpack/bindings/python/print_input_processing.hpp +++ b/src/mlpack/bindings/python/print_input_processing.hpp @@ -31,8 +31,8 @@ void PrintInputProcessing( const typename boost::disable_if>>::type* = 0) { - // The copy_all_inputs parameter must be handled first, and so is outside the - // scope of this code. + // The copy_all_inputs parameter must be handled first, and therefore is + // outside the scope of this code. if (d.name == "copy_all_inputs") return; @@ -179,7 +179,7 @@ void PrintInputProcessing( * except TypeError as e: * if type(param_name).__name__ == "ModelType": * SetParamPtr[Model]('param_name', ( param_name).modelptr, - * CLI.HasParam('copy_all_inputs')) TODO + * CLI.HasParam('copy_all_inputs')) * else: * raise e * CLI.SetPassed( 'param_name')