scovich commented on PR #7888: URL: https://github.com/apache/arrow-rs/pull/7888#issuecomment-3060158047
Looks like [docs job is broken](https://github.com/apache/arrow-rs/actions/runs/16210712671/job/45770109006?pr=7888) upstream? ``` error: unnecessary parentheses around closure body --> arrow-ord/src/cmp.rs:276:43 | 276 | let c = |((l, r), n)| ((l ^ r) | (l & r & n)); | ^ ^ | = note: `-D unused-parens` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unused_parens)]` help: remove these parentheses | 276 - let c = |((l, r), n)| ((l ^ r) | (l & r & n)); 276 + let c = |((l, r), n)| (l ^ r) | (l & r & n); | Documenting arrow-cast v55.2.0 (/__w/arrow-rs/arrow-rs/arrow-cast) error: could not document `arrow-ord` ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org