Skip to content

Commit bf1eb50

Browse files
authored
Merge pull request #1259 from vivaladan/fix-xml-doc-tags
Add missing XML doc closing tags
2 parents c7966a4 + 14f2842 commit bf1eb50

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
@@ -1949,7 +1949,8 @@ public void RunInTransaction (Action action)
19491949
/// </summary>
19501950
/// <param name="objects">
19511951
/// An <see cref="IEnumerable"/> of the objects to insert.
1952-
/// <param name="runInTransaction"/>
1952+
/// </param>
1953+
/// <param name="runInTransaction">
19531954
/// A boolean indicating if the inserts should be wrapped in a transaction.
19541955
/// </param>
19551956
/// <returns>

src/SQLiteAsync.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1371,7 +1371,8 @@ public Task<int> ExecuteAsync (string query, params object[] args)
13711371
/// </summary>
13721372
/// <param name="objects">
13731373
/// An <see cref="IEnumerable"/> of the objects to insert.
1374-
/// <param name="runInTransaction"/>
1374+
/// </param>
1375+
/// <param name="runInTransaction">
13751376
/// A boolean indicating if the inserts should be wrapped in a transaction.
13761377
/// </param>
13771378
/// <returns>

0 commit comments

Comments
 (0)