Skip to content

Commit e5a0958

Browse files
committed
fix(docs): escape angle brackets in FunctionReturnType doc comments
1 parent 11a37c6 commit e5a0958

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ast/ddl.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3473,9 +3473,9 @@ impl fmt::Display for CreateDomain {
34733473
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
34743474
#[cfg_attr(feature = "visitor", derive(Visit, VisitMut))]
34753475
pub enum FunctionReturnType {
3476-
/// RETURNS <type>
3476+
/// `RETURNS <type>`
34773477
DataType(DataType),
3478-
/// RETURNS SETOF <type>
3478+
/// `RETURNS SETOF <type>`
34793479
SetOf(DataType),
34803480
}
34813481

0 commit comments

Comments
 (0)