Skip to content

Commit f233f9b

Browse files
committed
Fix typo in comment
1 parent d651d85 commit f233f9b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

DirectSQL/Database.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public abstract class Database
4747

4848

4949
/// <summary>
50-
/// Asyncronous process with a connection
50+
/// Asynchronous process with a connection
5151
/// </summary>
5252
/// <param name="execute">execution with a connection</param>
5353
/// <returns></returns>
@@ -62,7 +62,7 @@ public async Task ProcessAsync(AsyncConnectExecution execute)
6262
}
6363

6464
/// <summary>
65-
/// Asyncronous process with a connection and a transaction
65+
/// Asynchronous process with a connection and a transaction
6666
/// </summary>
6767
/// <param name="execute">execution with a connection and a transaction</param>
6868
/// <returns></returns>
@@ -90,7 +90,7 @@ await ProcessAsync(async (connection) =>
9090
}
9191

9292
/// <summary>
93-
/// Syncronous process with a connection
93+
/// Synchronous process with a connection
9494
/// </summary>
9595
/// <param name="execute">execution with a connection</param>
9696
public void Process(ConnectExecution execute)
@@ -103,7 +103,7 @@ public void Process(ConnectExecution execute)
103103
}
104104

105105
/// <summary>
106-
/// Syncronous process with a connection and a transaction
106+
/// Synchronous process with a connection and a transaction
107107
/// </summary>
108108
/// <param name="execute">execution with a connection and a transaction</param>
109109
public void Process(SqlExecution execute)

0 commit comments

Comments
 (0)