From f789f9a531702e1b53c4937d85f43eca5ee87bbe Mon Sep 17 00:00:00 2001 From: Diptesh Choudhuri Date: Wed, 19 Jun 2024 06:51:04 +0530 Subject: [PATCH] style: add newlines --- src/extension/postgres/func.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/extension/postgres/func.rs b/src/extension/postgres/func.rs index 062d2828..67fc0b2a 100644 --- a/src/extension/postgres/func.rs +++ b/src/extension/postgres/func.rs @@ -362,8 +362,8 @@ impl PgFunc { /// /// let query = Query::select() /// .expr(PgFunc::json_build_object(vec![ - /// (Expr::val("a"), Expr::val(1)), - /// (Expr::val("b"), Expr::val("2")), + /// (Expr::val("a"), Expr::val(1)), + /// (Expr::val("b"), Expr::val("2")), /// ])) /// .to_owned(); ///