Skip to content

Commit

Permalink
fix markdown in find_window_fn docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-J-Ward committed Jul 25, 2024
1 parent df2cbad commit a8a6c9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/functions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -614,9 +614,9 @@ fn case(expr: PyExpr) -> PyResult<PyCaseBuilder> {
///
/// Search procedure:
/// 1) If a session context is provided:
/// a) search User Defined Aggregate Functions (UDAFs)
/// b) search registered window functions
/// c) search registered aggregate functions
/// 1) search User Defined Aggregate Functions (UDAFs)
/// 2) search registered window functions
/// 3) search registered aggregate functions
/// 2) If no function has been found, search default aggregate functions.
/// 3) Lastly, as a fall back attempt, search built in window functions, which are being deprecated.
fn find_window_fn(name: &str, ctx: Option<PySessionContext>) -> PyResult<WindowFunctionDefinition> {
Expand Down

0 comments on commit a8a6c9d

Please sign in to comment.