From a41202ecef817a742868f008b1c4a9f59a7689b3 Mon Sep 17 00:00:00 2001 From: Leon Etienne <40911701+Leonetienne@users.noreply.github.com> Date: Mon, 28 Feb 2022 00:12:03 +0000 Subject: [PATCH] Added missing parameter descriptions for minOutLen in BaseConversion --- Src/BaseConversion.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Src/BaseConversion.h b/Src/BaseConversion.h index 55ec4f0..bad72df 100644 --- a/Src/BaseConversion.h +++ b/Src/BaseConversion.h @@ -37,6 +37,7 @@ namespace Leonetienne { //! \tparam T_Container The type of container used for the digitstring //! \param num The number to be converted //! \param set The desired set/base for the output to be in. Should be a listlike container (such as a string) + //! \param minOutLen The minimum output length. Setting this will result in zero-padded output (Like, 00000001 instead of 1) //! \return `num` in base `set` template static T_Container @@ -48,7 +49,7 @@ namespace Leonetienne { //! \param num A representation of a number in a listlike container (such as a string) //! \param set_in The set/base of the input //! \param set_out The desired set/base to output - //! \param minLen The minimum output length. Setting this will result in zero-padded output (Like, 00000001 instead of 1) + //! \param minOutLen The minimum output length. Setting this will result in zero-padded output (Like, 00000001 instead of 1) //! \return `num` in base `set_out` template static T_ContainerOut