Skip to content

Commit 2c389c4

Browse files
adamreeveStanding-Man
authored andcommitted
Fix failing documentation check (apache#17026)
1 parent 62b6c8c commit 2c389c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datafusion/functions-window/src/row_number.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ define_udwf_and_expr!(
4646
doc_section(label = "Ranking Functions"),
4747
description = "Number of the current row within its partition, counting from 1.",
4848
syntax_example = "row_number()",
49-
sql_example = r"
49+
sql_example = r#"
5050
```sql
5151
-- Example usage of the row_number window function:
5252
SELECT department,
@@ -65,7 +65,7 @@ FROM employees;
6565
| Engineering | 80000 | 2 |
6666
+-------------+--------+---------+
6767
```
68-
#"
68+
"#
6969
)]
7070
#[derive(Debug)]
7171
pub struct RowNumber {

0 commit comments

Comments
 (0)