Skip to content

Commit 989cf1b

Browse files
committed
Add missing line.
1 parent a502300 commit 989cf1b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PSql.Deploy.Engine/Utilities/StringExtensions.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ public static bool IsNullOrEmpty([NotNullWhen(false)] this string? s)
5151
/// <paramref name="s"/>
5252
/// otherwise.
5353
/// </returns>
54-
/// This method performs a case-sensitive ordinal comparison.
5554
/// <remarks>
55+
/// This method performs a case-sensitive ordinal comparison.
56+
/// </remarks>
5657
public static string? NullIf(this string? s, string? nullish)
5758
=> s == nullish ? null : s;
5859

0 commit comments

Comments
 (0)