Skip to content

Commit

Permalink
sealed
Browse files Browse the repository at this point in the history
  • Loading branch information
DanHarltey committed Mar 6, 2024
1 parent 9864419 commit 68589db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Fastenshtein/Levenshtein.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// Measures the difference between two strings.
/// Uses the Levenshtein string difference algorithm.
/// </summary>
public partial class Levenshtein
public sealed partial class Levenshtein
{
/*
* WARRING this class is performance critical (Speed).
Expand Down
2 changes: 1 addition & 1 deletion src/Fastenshtein/StaticLevenshtein.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// Measures the difference between two strings.
/// Uses the Levenshtein string difference algorithm.
/// </summary>
public partial class Levenshtein
public sealed partial class Levenshtein
{
/// <summary>
/// Compares the two values to find the minimum Levenshtein distance.
Expand Down

0 comments on commit 68589db

Please sign in to comment.