Skip to content

Commit e1ee5ca

Browse files
committed
Fix brackets
1 parent c6cf5bd commit e1ee5ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SQLite Common/Database.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public final class Database {
223223
/// :param: statements Statements array to run in the transaction.
224224
///
225225
/// :returns: The last statement executed, successful or not.
226-
public func transaction(statements: [(@autoclosure () -> Statement)]) -> Statement {
226+
public func transaction(statements: [@autoclosure () -> Statement]) -> Statement {
227227
return transaction(.Deferred, statements)
228228
}
229229

0 commit comments

Comments
 (0)