From 4406a0a1b26b675a8831b516379b7bfac8af6e7c Mon Sep 17 00:00:00 2001 From: yxxhero <11087727+yxxhero@users.noreply.github.com> Date: Fri, 25 Apr 2025 10:49:06 +0800 Subject: [PATCH] style(database/postgres.go): Capitalize DSN in comment (#3993) Signed-off-by: yxxhero --- manager/database/postgres.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/database/postgres.go b/manager/database/postgres.go index 1ce101691..988ba28ff 100644 --- a/manager/database/postgres.go +++ b/manager/database/postgres.go @@ -31,7 +31,7 @@ import ( func newPostgres(cfg *config.Config) (*gorm.DB, error) { postgresCfg := &cfg.Database.Postgres - // Format dsn string. + // Format DSN string. dsn := formatPostgresDSN(postgresCfg) // Connect to postgres.