From 9dccd041c23f0728d8ce0a089eec48e513a4cab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yunus=20Emre=20Deligo=CC=88z?= Date: Mon, 1 Jan 2024 18:25:44 +0300 Subject: [PATCH] Correct NGramFrequency class documentation typo Fixed a minor typo in the docstring of the NGramFrequency class. The change ensures the documentation accurately reflects the function's behavior and improves its readability. --- src/NGramFrequency.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NGramFrequency.php b/src/NGramFrequency.php index 65c2b44..88b5a5e 100644 --- a/src/NGramFrequency.php +++ b/src/NGramFrequency.php @@ -32,7 +32,7 @@ public static function trigram(array $tokens): array } /** - * Generates bigrams with frequency for given array of tokens and n-gram level. + * Generates bigrams with frequency for given an array of tokens and n-gram level. * * @param array $tokens * @return array