From ebfdfe0a523558343a25530a61e47c27f0d87554 Mon Sep 17 00:00:00 2001 From: Jack Del Vecchio Date: Mon, 23 Sep 2024 15:58:22 -0400 Subject: [PATCH] Fix typo in Binary Coded Decimal --- plugins/parquet/parquetembed.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/parquet/parquetembed.cpp b/plugins/parquet/parquetembed.cpp index 5f8010b72ac..497a202b903 100644 --- a/plugins/parquet/parquetembed.cpp +++ b/plugins/parquet/parquetembed.cpp @@ -1935,7 +1935,7 @@ void ParquetRecordBinder::addDecimalFieldToBuilder(rtlDataAttr *decText, size32_ } /** - * @brief Convert from Binary Code Decimal to string and add to Decimal field builder. + * @brief Convert from Binary Coded Decimal to string and add to Decimal field builder. * * @param value Data to be written to the Parquet file. * @param digits Number of bytes holding the digits. @@ -1957,7 +1957,7 @@ void ParquetRecordBinder::processUDecimal(const void *value, unsigned digits, un } /** - * @brief Convert from Binary Code Decimal to string and add to Decimal field builder. + * @brief Convert from Binary Coded Decimal to string and add to Decimal field builder. * * @param value Data to be written to the Parquet file. * @param digits Number of bytes holding the digits.