diff --git a/3.0/docs/styleguide/styleguide.md b/3.0/docs/styleguide/styleguide.md index 738503d0..1f58ad9b 100644 --- a/3.0/docs/styleguide/styleguide.md +++ b/3.0/docs/styleguide/styleguide.md @@ -404,7 +404,7 @@ extension MySQLUserRepository { static let serviceSupports: [Any.Type] = [UserRepository.self] static func makeService(for worker: Container) throws -> Self { - return .init(db: worker.connectionPool(to: .mysql)) + return .init(worker.connectionPool(to: .mysql)) } } ```