Update mod.rs

Co-authored-by: Ifeanyi Ubah <ify1992@yahoo.com>
This commit is contained in:
Luca Cappelletti 2025-11-22 07:56:05 +01:00 committed by GitHub
parent 80abe581fe
commit c047b3f56b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7541,7 +7541,7 @@ impl<'a> Parser<'a> {
} }
/// Parse an operator signature for a [Statement::DropOperator] /// Parse an operator signature for a [Statement::DropOperator]
/// Format: name ( { left_type | NONE } , right_type ) /// Format: `name ( { left_type | NONE } , right_type )`
fn parse_operator_signature(&mut self) -> Result<OperatorSignature, ParserError> { fn parse_operator_signature(&mut self) -> Result<OperatorSignature, ParserError> {
let name = self.parse_operator_name()?; let name = self.parse_operator_name()?;
self.expect_token(&Token::LParen)?; self.expect_token(&Token::LParen)?;