From 71db9b1d526488ffb8736252e8b80ad50cf65f1f Mon Sep 17 00:00:00 2001 From: NicklasXYZ <18580183+NicklasXYZ@users.noreply.github.com> Date: Wed, 10 Apr 2024 23:28:28 +0200 Subject: [PATCH] fix link --- src/gleam_community/maths/metrics.gleam | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/gleam_community/maths/metrics.gleam b/src/gleam_community/maths/metrics.gleam index d5ddc69..237b900 100644 --- a/src/gleam_community/maths/metrics.gleam +++ b/src/gleam_community/maths/metrics.gleam @@ -38,6 +38,7 @@ //// * [`sorensen_dice_coefficient`](#sorensen_dice_coefficient) //// * [`tversky_index`](#tversky_index) //// * [`overlap_coefficient`](#overlap_coefficient) +//// * [`levenshtein_distance`](#levenshtein_distance) //// * **Basic statistical measures** //// * [`mean`](#mean) //// * [`median`](#median) @@ -1014,8 +1015,8 @@ pub fn cosine_similarity( /// - deletions /// - substitutions /// -/// Note: The implementation is primarily based on the elixir implementation -/// [https://hex.pm/packages/levenshtein](levenshtein). +/// Note: The implementation is primarily based on the Elixir implementation +/// [levenshtein](https://hex.pm/packages/levenshtein). /// ///
/// Example: