Skip to content

Commit ab18487

Browse files
committed
address feedback
1 parent 3464a8f commit ab18487

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/dialect/ansi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ impl Dialect for AnsiDialect {
3434
true
3535
}
3636

37-
// The SQL standard explictly states that block comments nest.
37+
/// The SQL standard explicitly states that block comments nest.
3838
fn supports_nested_comments(&self) -> bool {
3939
true
4040
}

src/dialect/clickhouse.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ impl Dialect for ClickHouseDialect {
9595
true
9696
}
9797

98-
// Supported since 2020.
99-
// See <https://clickhouse.com/docs/whats-new/changelog/2020#backward-incompatible-change-2>
98+
/// Supported since 2020.
99+
/// See <https://clickhouse.com/docs/whats-new/changelog/2020#backward-incompatible-change-2>
100100
fn supports_nested_comments(&self) -> bool {
101101
true
102102
}

src/dialect/databricks.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ impl Dialect for DatabricksDialect {
6565
true
6666
}
6767

68-
// https://docs.databricks.com/aws/en/sql/language-manual/sql-ref-syntax-comment
68+
/// https://docs.databricks.com/aws/en/sql/language-manual/sql-ref-syntax-comment
6969
fn supports_nested_comments(&self) -> bool {
7070
true
7171
}

0 commit comments

Comments
 (0)