Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cpp/src/arrow/compute/exec.cc
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ bool ExecSpanIterator::Next(ExecSpan* span) {
// The first time this is called, we populate the output span with any
// Scalar or Array arguments in the ExecValue struct, and then just
// increment array offsets below. If any arguments are ChunkedArray, then
// the internal ArraySpans will see their members updated during hte
// the internal ArraySpans will see their members updated during the
// iteration
span->values.resize(args_->size());
for (size_t i = 0; i < args_->size(); ++i) {
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/arrow/telemetry/logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class ARROW_EXPORT OtelLogger : public util::Logger {
class ARROW_EXPORT OtelLoggerProvider {
public:
/// \brief Attempt to flush the log record processor associated with the provider
/// \return `true` if the flush occured
/// \return `true` if the flush occurred
static bool Flush(std::chrono::microseconds timeout = std::chrono::microseconds::max());

static Result<std::shared_ptr<OtelLogger>> MakeLogger(
Expand Down
Loading