diff --git a/python-PyTrie.changes b/python-PyTrie.changes index f748e78..46cf7f8 100644 --- a/python-PyTrie.changes +++ b/python-PyTrie.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Mar 29 08:49:43 UTC 2019 - Jan Engelhardt + +- Drop duplicated word. + ------------------------------------------------------------------- Thu Mar 28 08:20:50 UTC 2019 - Tomáš Chvátal diff --git a/python-PyTrie.spec b/python-PyTrie.spec index 0650d30..b97eb9b 100644 --- a/python-PyTrie.spec +++ b/python-PyTrie.spec @@ -41,9 +41,9 @@ BuildArch: noarch %python_subpackages %description -pytrie is a a pure Python (2 and 3) implementation of the trie data structure. +pytrie is a pure Python (2 and 3) implementation of the trie data structure. -A _trie_ is an ordered tree data structure that is used to store a mapping +A trie is an ordered tree data structure that is used to store a mapping where the keys are sequences, usually strings over an alphabet. In addition to implementing the mapping interface, tries allow finding the items for a given prefix, and vice versa, finding the items whose keys are prefixes of a given key.