File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
core/src/main/scala/scalikejdbc/async Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ trait AsyncDBSession extends LogSupport {
3232 withListeners(statement, parameters) {
3333 queryLogging(statement, parameters)
3434 if (connection.isShared) {
35- // create local transaction becauase postgresql-async 0.2.4 seems not to be stable with PostgreSQL without transaction
35+ // create local transaction because postgresql-async 0.2.4 seems not to be stable with PostgreSQL without transaction
3636 connection.toNonSharedConnection().map(c => TxAsyncDBSession (c)).flatMap { tx : TxAsyncDBSession =>
3737 tx.execute(statement, parameters : _* )
3838 }
@@ -47,7 +47,7 @@ trait AsyncDBSession extends LogSupport {
4747 withListeners(statement, parameters) {
4848 queryLogging(statement, parameters)
4949 if (connection.isShared) {
50- // create local transaction becauase postgresql-async 0.2.4 seems not to be stable with PostgreSQL without transaction
50+ // create local transaction because postgresql-async 0.2.4 seems not to be stable with PostgreSQL without transaction
5151 connection.toNonSharedConnection().map(c => TxAsyncDBSession (c)).flatMap { tx : TxAsyncDBSession =>
5252 tx.update(statement, parameters : _* )
5353 }
You can’t perform that action at this time.
0 commit comments