friendlymatthew commented on PR #7878:
URL: https://github.com/apache/arrow-rs/pull/7878#issuecomment-3060147909

   For example, the latest CI run displays errors like: 
   
   > Documenting arrow-ord v55.2.0 (/__w/arrow-rs/arrow-rs/arrow-ord)
   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);
       |
   
   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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to