Skip to content

Commit

Permalink
doc: fix related udf order for upper function in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheng-Yuan-Lai committed Dec 30, 2024
1 parent a0976b9 commit 00621e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions datafusion/functions/src/string/upper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ use std::any::Any;
+---------------------------+
```"#,
standard_argument(name = "str", prefix = "String"),
related_udf(name = "lower"),
related_udf(name = "initcap")
related_udf(name = "initcap"),
related_udf(name = "lower")
)]
#[derive(Debug)]
pub struct UpperFunc {
Expand Down
2 changes: 1 addition & 1 deletion docs/source/user-guide/sql/scalar_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -1697,8 +1697,8 @@ upper(str)

**Related functions**:

- [lower](#lower)
- [initcap](#initcap)
- [lower](#lower)

### `uuid`

Expand Down

0 comments on commit 00621e7

Please sign in to comment.