From 243becebccdc86c38c5e0fcd85602e667159bcd7 Mon Sep 17 00:00:00 2001 From: Luca Date: Mon, 1 Dec 2025 19:42:19 +0100 Subject: [PATCH] Formatted `None` variant --- src/ast/ddl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ast/ddl.rs b/src/ast/ddl.rs index 1d451bb9..0b113fd5 100644 --- a/src/ast/ddl.rs +++ b/src/ast/ddl.rs @@ -1003,7 +1003,7 @@ impl fmt::Display for AlterTypeOperation { pub struct AlterOperator { /// Operator name (can be schema-qualified) pub name: ObjectName, - /// Left operand type (`NONE` if no left operand) + /// Left operand type (`None` if no left operand) pub left_type: Option, /// Right operand type pub right_type: DataType,