Skip to content

Commit

Permalink
Fixes: remove intra-doc link for $UDWF identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
jcsherin committed Oct 12, 2024
1 parent 0c4b521 commit 0bcc8fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion/functions-window/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ macro_rules! create_udwf_expr {
($UDWF:ident, $OUT_FN_NAME:ident, $DOC:expr) => {
paste::paste! {
#[doc = " Create a [`WindowFunction`](datafusion_expr::Expr::WindowFunction) expression for"]
#[doc = concat!(" [`", stringify!($UDWF), "`] user-defined window function.")]
#[doc = concat!(" `", stringify!($UDWF), "` user-defined window function.")]
#[doc = ""]
#[doc = concat!(" ", $DOC)]
pub fn $OUT_FN_NAME() -> datafusion_expr::Expr {
Expand All @@ -316,7 +316,7 @@ macro_rules! create_udwf_expr {
($UDWF:ident, $OUT_FN_NAME:ident, [$($PARAM:ident),+], $DOC:expr) => {
paste::paste! {
#[doc = " Create a [`WindowFunction`](datafusion_expr::Expr::WindowFunction) expression for"]
#[doc = concat!(" [`", stringify!($UDWF), "`] user-defined window function.")]
#[doc = concat!(" `", stringify!($UDWF), "` user-defined window function.")]
#[doc = ""]
#[doc = concat!(" ", $DOC)]
pub fn $OUT_FN_NAME(
Expand Down

0 comments on commit 0bcc8fc

Please sign in to comment.