Skip to content

Commit b81db86

Browse files
Remove rust tags
1 parent 5015878 commit b81db86

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

arrow-arith/src/aggregate.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ fn aggregate<T: ArrowNativeTypeOp, P: ArrowPrimitiveType<Native = T>, A: Numeric
333333
/// Returns the minimum value in the boolean array.
334334
///
335335
/// # Example
336-
/// ```rust
336+
/// ```
337337
/// # use arrow_array::BooleanArray;
338338
/// # use arrow_arith::aggregate::min_boolean;
339339
/// let a = BooleanArray::from(vec![Some(true), None, Some(false)]);
@@ -391,7 +391,7 @@ pub fn min_boolean(array: &BooleanArray) -> Option<bool> {
391391
/// Returns the maximum value in the boolean array
392392
///
393393
/// # Example
394-
/// ```rust
394+
/// ```
395395
/// # use arrow_array::BooleanArray;
396396
/// # use arrow_arith::aggregate::max_boolean;
397397
/// let a = BooleanArray::from(vec![Some(true), None, Some(false)]);

arrow-ord/src/sort.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ pub struct SortColumn {
848848
///
849849
/// # Example:
850850
///
851-
/// ```rust
851+
/// ```
852852
/// # use std::convert::From;
853853
/// # use std::sync::Arc;
854854
/// # use arrow_array::{ArrayRef, StringArray, PrimitiveArray};

arrow-select/src/take.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1006,7 +1006,7 @@ to_indices_reinterpret!(Int64Type, UInt64Type);
10061006
/// This function will call [`take`] on each array of the [`RecordBatch`] and assemble a new [`RecordBatch`].
10071007
///
10081008
/// # Example
1009-
/// ```rust
1009+
/// ```
10101010
/// # use std::sync::Arc;
10111011
/// # use arrow_array::{StringArray, Int32Array, UInt32Array, RecordBatch};
10121012
/// # use arrow_schema::{DataType, Field, Schema};

arrow-select/src/window.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use num_traits::abs;
2626
/// A positive value for `offset` shifts the array to the right
2727
/// a negative value shifts the array to the left.
2828
/// # Examples
29-
/// ```rust
29+
/// ```
3030
/// # use arrow_array::Int32Array;
3131
/// # use arrow_select::window::shift;
3232
/// let a: Int32Array = vec![Some(1), None, Some(4)].into();

0 commit comments

Comments
 (0)