Skip to content

Commit 4bbe901

Browse files
Fixed spacing/wrap issue per copilot pr requirement.
1 parent b2de2f2 commit 4bbe901

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/F23.StringSimilarity/NormalizedLevenshtein.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public double Distance(string s1, string s2)
5151
/// Calculates the normalized distance between two sequences of elements.
5252
/// </summary>
5353
/// <remarks>The distance is normalized by the length of the longer sequence. This ensures the
54-
/// result is always in the range [0.0, 1.0], where 0.0 indicates identical sequences and 1.0 indicates
54+
/// result is always in the range [0.0, 1.0], where 0.0 indicates identical sequences and 1.0 indicates
5555
/// maximum dissimilarity.</remarks>
5656
/// <typeparam name="T">The type of elements in the sequences. Must implement <see cref="IEquatable{T}"/>.</typeparam>
5757
/// <param name="s1">The first sequence to compare. Cannot be empty or null.</param>

0 commit comments

Comments
 (0)