Skip to content

Commit 14f2842

Browse files
committed
Add missing XML doc closing tags
1 parent 5f72241 commit 14f2842

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/SQLite.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1641,7 +1641,8 @@ public void RunInTransaction (Action action)
16411641
/// </summary>
16421642
/// <param name="objects">
16431643
/// An <see cref="IEnumerable"/> of the objects to insert.
1644-
/// <param name="runInTransaction"/>
1644+
/// </param>
1645+
/// <param name="runInTransaction">
16451646
/// A boolean indicating if the inserts should be wrapped in a transaction.
16461647
/// </param>
16471648
/// <returns>

src/SQLiteAsync.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1033,7 +1033,8 @@ public Task<int> ExecuteAsync (string query, params object[] args)
10331033
/// </summary>
10341034
/// <param name="objects">
10351035
/// An <see cref="IEnumerable"/> of the objects to insert.
1036-
/// <param name="runInTransaction"/>
1036+
/// </param>
1037+
/// <param name="runInTransaction">
10371038
/// A boolean indicating if the inserts should be wrapped in a transaction.
10381039
/// </param>
10391040
/// <returns>

0 commit comments

Comments
 (0)