Skip to content

Commit f69e0d9

Browse files
committed
Use consistent SQL casing
1 parent 6126320 commit f69e0d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ast/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3734,9 +3734,9 @@ pub enum Statement {
37343734
/// SELECT 1;
37353735
/// EXCEPTION
37363736
/// WHEN EXCEPTION_1 THEN
3737-
/// select 2;
3737+
/// SELECT 2;
37383738
/// WHEN EXCEPTION_2 OR EXCEPTION_3 THEN
3739-
/// select 3;
3739+
/// SELECT 3;
37403740
/// WHEN OTHER THEN
37413741
/// SELECT 4;
37423742
/// RAISE;

0 commit comments

Comments
 (0)