From 1a167571c36f8bd75ccc7fa529fe9c5147736cfa Mon Sep 17 00:00:00 2001 From: Rok Mihevc Date: Fri, 4 Jun 2021 11:18:04 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Joris Van den Bossche --- cpp/src/arrow/compute/api_scalar.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/src/arrow/compute/api_scalar.h b/cpp/src/arrow/compute/api_scalar.h index f1bef807afa32..5df00bdcf8c18 100644 --- a/cpp/src/arrow/compute/api_scalar.h +++ b/cpp/src/arrow/compute/api_scalar.h @@ -613,7 +613,7 @@ ARROW_EXPORT Result ISOWeek(const Datum& values, ExecContext* ctx = NULLP ARROW_EXPORT Result ISOCalendar(const Datum& values, ExecContext* ctx = NULLPTR); /// \brief Quarter returns the quarter of year number for each element of `values` -/// First quarter maps to 1 and forth quarter maps to 4. +/// First quarter maps to 1 and fourth quarter maps to 4. /// /// \param[in] values input to extract quarter of year from /// \param[in] ctx the function execution context, optional @@ -689,7 +689,7 @@ Result Microsecond(const Datum& values, ExecContext* ctx = NULLPTR); ARROW_EXPORT Result Nanosecond(const Datum& values, ExecContext* ctx = NULLPTR); -/// \brief Subsecond returns subsecond time fraction since last second for each element of +/// \brief Subsecond returns subsecond time fraction since last second as a float for each element of /// `values` /// /// \param[in] values input to extract subsecond from