@@ -81,15 +81,15 @@ public override Version GetDbVersion(SQLiteDbConnection connection, Cancellation
8181 /// </summary>
8282 /// <param name="connection">The database connection to use for performing the updates.</param>
8383 /// <param name="cancellationToken">Cancellation token to cancel the execution.</param>
84- /// <returns><c> true</c > if the update operations were successful; otherwise, <c> false</c >.</returns>
84+ /// <returns><see langword=" true"/ > if the update operations were successful; otherwise, <see langword=" false"/ >.</returns>
8585 protected abstract bool PerformUpdate ( SQLiteDbConnection connection , CancellationToken cancellationToken ) ;
8686
8787 /// <summary>
8888 /// Determines whether the database requires an update to match the version specified by this converter.
8989 /// </summary>
9090 /// <param name="connection">The database connection to check.</param>
9191 /// <param name="cancellationToken">Cancellation token to cancel the execution.</param>
92- /// <returns><c> true</c > if the database requires an update; otherwise, <c> false</c >.</returns>
92+ /// <returns><see langword=" true"/ > if the database requires an update; otherwise, <see langword=" false"/ >.</returns>
9393 public override bool RequiresUpdate ( SQLiteDbConnection connection , CancellationToken cancellationToken )
9494 {
9595 using var _ = connection . SuspendAsserts ( ) ;
@@ -111,7 +111,7 @@ public override bool RequiresUpdate(SQLiteDbConnection connection, CancellationT
111111 /// <param name="connection">The database connection to use for adding version information.</param>
112112 /// <param name="dbVersion">The version value to insert into the version table.</param>
113113 /// <param name="cancellationToken">Cancellation token to cancel the execution.</param>
114- /// <returns><c> true</c > if the version information was successfully added; otherwise, <c> false</c >.</returns>
114+ /// <returns><see langword=" true"/ > if the version information was successfully added; otherwise, <see langword=" false"/ >.</returns>
115115 protected bool TryAddDbInfo ( SQLiteDbConnection connection , string dbVersion , CancellationToken cancellationToken )
116116 {
117117 connection . ExecuteNonQuery ( CreateVersionTable , cancellationToken : cancellationToken ) ;
@@ -128,7 +128,7 @@ protected bool TryAddDbInfo(SQLiteDbConnection connection, string dbVersion, Can
128128 /// </summary>
129129 /// <param name="connection">The database connection to use for performing the update.</param>
130130 /// <param name="cancellationToken">Cancellation token to cancel the execution.</param>
131- /// <returns><c> true</c > if the update operations were successful; otherwise, <c> false</c >.</returns>
131+ /// <returns><see langword=" true"/ > if the update operations were successful; otherwise, <see langword=" false"/ >.</returns>
132132 public sealed override bool Update ( SQLiteDbConnection connection , CancellationToken cancellationToken )
133133 {
134134 Debug . Assert ( connection . InTransaction ) ;
0 commit comments