Skip to content

Commit 510d864

Browse files
Added space extra space row for formatting.
1 parent 4bbe901 commit 510d864

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/F23.StringSimilarity/LongestCommonSubsequence.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public class LongestCommonSubsequence : IStringDistance, ISpanDistance
6161
/// <exception cref="ArgumentNullException">If s1 or s2 is null.</exception>
6262
public double Distance(string s1, string s2)
6363
=> Distance(s1.AsSpan(), s2.AsSpan());
64-
64+
6565
/// <summary>
6666
/// Calculates the distance between two sequences based on their similarity.
6767
/// </summary>
@@ -104,7 +104,7 @@ public double Distance<T>(ReadOnlySpan<T> s1, ReadOnlySpan<T> s2)
104104
/// <exception cref="ArgumentNullException">If s1 or s2 is null.</exception>
105105
public int Length(string s1, string s2)
106106
=> Length(s1.AsSpan(), s2.AsSpan());
107-
107+
108108
internal static int Length<T>(ReadOnlySpan<T> s1, ReadOnlySpan<T> s2)
109109
where T : IEquatable<T>
110110
{

0 commit comments

Comments
 (0)