Skip to content

Commit f0e417c

Browse files
committed
fix(dao): postgres dao documentation
1 parent ec0c3c1 commit f0e417c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dao/task-dao-postgres.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import (
1111
// compilation time interface check
1212
var _ TaskDAO = (*TaskDAOPostgres)(nil)
1313

14-
// TaskDAOPostgres is the mongo implementation of the TaskDAO
14+
// TaskDAOPostgres is the postgreSQL implementation of the TaskDAO
1515
type TaskDAOPostgres struct {
1616
db *sql.DB
1717
}
1818

19-
// NewTaskDAOPostgres creates a new TaskDAO mongo implementation
19+
// NewTaskDAOPostgres creates a new TaskDAO postgreSQL implementation
2020
func NewTaskDAOPostgres(db *sql.DB) TaskDAO {
2121
return &TaskDAOPostgres{
2222
db: db,

0 commit comments

Comments
 (0)