From 29e2b3478a8f83c786e2992358d7edfc39719674 Mon Sep 17 00:00:00 2001 From: Maxim Likhachev Date: Tue, 11 Feb 2020 17:02:15 +0300 Subject: [PATCH] Fix commentary --- src/Search.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Search.hs b/src/Search.hs index cb1cd03..259d59a 100644 --- a/src/Search.hs +++ b/src/Search.hs @@ -57,7 +57,7 @@ pattern T str <- (toString -> str) data FindStrictness = Strict -- ^ Exact match | Fuzzy -- ^ Fuzzy search --- | Структура 'Score' +-- | 'Score' structure data Score = Score { matches :: !Int -- ^ Count of matches , diffs :: !Int -- ^ Count of differences (errors) or 'fullScore' }