Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
jdcasale committed May 10, 2024
1 parent 899b71e commit 16473eb
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions vortex-expr/src/expressions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,6 @@ impl Expr {
}

/// Create a sort expression from an existing expression.
///
/// ```
/// # use vortex_expr::field;
/// let sort_expr = field("foo").sort(true, true); // SORT ASC NULLS_FIRST
/// ```
pub fn sort(self, asc: bool, nulls_first: bool) -> Expr {
Expr::Sort(Sort::new(Box::new(self), asc, nulls_first))
}
Expand Down

0 comments on commit 16473eb

Please sign in to comment.