Skip to content

Commit

Permalink
Merge pull request #74 from vapor/fix-indentation
Browse files Browse the repository at this point in the history
Fixed indentation in PostgreSQLDatabaseConfig.swift
  • Loading branch information
tanner0101 authored Jun 15, 2018
2 parents 8a37a5d + cd6fe64 commit 59fb6ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/PostgreSQL/Database/PostgreSQLDatabaseConfig.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ public struct PostgreSQLDatabaseConfig {
public init(serverAddress: PostgreSQLConnection.ServerAddress, username: String, database: String? = nil, password: String? = nil, transport: PostgreSQLConnection.TransportConfig = .cleartext) {
self.username = username
self.database = database
self.password = password
self.password = password
self.serverAddress = serverAddress
self.transportConfig = transport
}
self.transportConfig = transport
}

public init?(url urlString: String, transport: PostgreSQLConnection.TransportConfig = .cleartext) throws {
guard let url = URL(string: urlString) else {
Expand Down

0 comments on commit 59fb6ae

Please sign in to comment.