15
0
forked from pool/python-PyTrie

Accepting request 695336 from devel:languages:python

- Drop duplicated word.

OBS-URL: https://build.opensuse.org/request/show/695336
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-PyTrie?expand=0&rev=2
This commit is contained in:
2019-04-18 07:57:23 +00:00
committed by Git OBS Bridge
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Mar 29 08:49:43 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
- Drop duplicated word.
-------------------------------------------------------------------
Thu Mar 28 08:20:50 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@@ -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.