Skip to content

Commit 0777bd2

Browse files
authored
Fix xml comments. Use <see langword="null"/> instead of <c>null</c>. (#43)
1 parent 746ea2d commit 0777bd2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Orm/Xtensive.Orm/Sql/Dml/Collections/SqlColumnCollection.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public SqlColumn this[int index]
4949

5050
/// <summary>
5151
/// Gets the column with the specified <paramref name="name"/>
52-
/// or <c>null</c> if collection doesn't contain such a column.
52+
/// or <see langword="null"/> if collection doesn't contain such a column.
5353
/// </summary>
5454
public SqlColumn this[string name] =>
5555
string.IsNullOrEmpty(name) ? null : columnList.Find(column => Comparer.Equals(column.Name, name));
@@ -81,7 +81,7 @@ public void Add(SqlExpression expression) =>
8181
/// Builds a <see cref="SqlColumnRef"/> by the specified <paramref name="expression"/> and
8282
/// <paramref name="alias"/>; then adds it to the end of the <see cref="SqlColumnCollection"/>.
8383
/// </summary>
84-
/// <exception cref="ArgumentNullException"><paramref name="alias"/> is <c>null</c>.</exception>
84+
/// <exception cref="ArgumentNullException"><paramref name="alias"/> is <see langword="null"/>.</exception>
8585
public void Add(SqlExpression expression, string alias)
8686
{
8787
ArgumentValidator.EnsureArgumentNotNull(alias, nameof(alias));
@@ -92,7 +92,7 @@ public void Add(SqlExpression expression, string alias)
9292
/// Builds a <see cref="SqlColumnRef"/> by the specified <paramref name="expression"/> and <paramref name="alias"/>
9393
/// then inserts it into <see cref="SqlColumnCollection"/> at the specified <paramref name="index"/>.
9494
/// </summary>
95-
/// <exception cref="ArgumentNullException"><paramref name="alias"/> is <c>null</c>.</exception>
95+
/// <exception cref="ArgumentNullException"><paramref name="alias"/> is <see langword="null"/>.</exception>
9696
/// <exception cref="IndexOutOfRangeException"><paramref name="index"/> is less than <c>0</c>.
9797
/// -or- <paramref name="index"/> is greater than <see cref="Count"/>.</exception>
9898
public void Insert(int index, SqlExpression expression, string alias)

0 commit comments

Comments
 (0)