Skip to content

Commit

Permalink
doobieengine docs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
salamonpavel committed Jan 4, 2024
1 parent 6b76004 commit 8c7a17a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ import scala.language.higherKinds

/**
* [[DoobieEngine]] is a class that extends [[DBEngine]] with `F` as the effect type.
* It uses Doobie's [[Transactor]] to execute SQL queries.
* It uses Doobie's [[doobie.Transactor]] to execute SQL queries.
*
* [[Async]] is needed because Doobie requires it for non-blocking database operations.
*
* @param transactor the Doobie [[Transactor]] for executing SQL queries
* @param transactor the Doobie [[doobie.Transactor]] for executing SQL queries
* @tparam F the effect type, which must have an [[Async]] instance
*/
class DoobieEngine[F[_]: Async](val transactor: Transactor[F]) extends DBEngine[F] {
Expand Down

0 comments on commit 8c7a17a

Please sign in to comment.