Skip to content

Commit 35666c3

Browse files
committed
doc fixes
1 parent 90db421 commit 35666c3

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

SQLitePCL.pretty/Interfaces.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,9 @@ public interface IDatabaseConnection : IDisposable
146146
/// </summary>
147147
/// <seealso href="https://www.sqlite.org/c3ref/db_status.html"/>
148148
/// <param name="statusCode">The parameter to interrogate.</param>
149+
/// <param name="current">The current value of the performance metric.</param>
150+
/// <param name="highwater">The highwater value of the performance metric.</param>
149151
/// <param name="reset">If <see langword="true"/>, then the highest instantaneous value is reset back down to the current value.</param>
150-
/// <returns>The current and highwater value of the performance metric.</returns>
151152
void Status(DatabaseConnectionStatusCode statusCode, out int current, out int highwater, bool reset);
152153
}
153154

SQLitePCL.pretty/SQLite3.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,8 @@ public static bool IsCompleteStatement(string sql)
201201
/// </summary>
202202
/// <seealso href="https://www.sqlite.org/c3ref/status.html"/>
203203
/// <param name="statusCode">The specific parameter to measure.</param>
204+
/// <param name="current">The current value of the performance metric.</param>
205+
/// <param name="highwater">The highwater value of the performance metric.</param>
204206
/// <param name="reset">If <see langword="true"/>, then the highest record value is reset.</param>
205207
public static void Status(SQLiteStatusCode statusCode, out int current, out int highwater, bool reset)
206208
{

0 commit comments

Comments
 (0)