Skip to content

Commit b2f996b

Browse files
Youssef1313cartermp
authored andcommitted
typo: ahve -> have (#7648)
1 parent fd440a9 commit b2f996b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vsintegration/src/FSharp.PatternMatcher/EditDistance.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ private static int GetEditDistanceWorker(ArraySlice<char> source, ArraySlice<cha
323323
// Given the edit distance rules we observe edit distance at any point (i,j) in the matrix will
324324
// always be greater than or equal to the value in (i-1, j-1). i.e. the edit distance of
325325
// any two strings is going to be *at best* equal to the edit distance of those two strings
326-
// without their final characters. If their final characters are the same, they'll ahve the
326+
// without their final characters. If their final characters are the same, they'll have the
327327
// same edit distance. If they are different, the edit distance will be greater. Given
328328
// that we know the final edit distance is in the lower right, we can discover something
329329
// useful in the matrix.
@@ -674,4 +674,4 @@ public static void ReleaseArray(T[] array)
674674
}
675675
}
676676
}
677-
}
677+
}

0 commit comments

Comments
 (0)