Skip to content

Commit

Permalink
Fixes #4
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelloPerathoner committed Sep 24, 2023
1 parent aadea9a commit af41b65
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
Binary file modified docs/_build/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/_build/doctrees/tree.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/_build/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/_build/tree.html
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@
<dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>a list of <span class="math notranslate nohighlight">\(K - 1\)</span> tuples containing <span class="math notranslate nohighlight">\(k\)</span>, <span class="math notranslate nohighlight">\(l(k)\)</span>, and one of the common
substrings of that length.</p>
substrings of that length, which may be None.</p>
</dd>
</dl>
<div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="kn">from</span> <span class="nn">suffix_tree</span> <span class="kn">import</span> <span class="n">Tree</span>
Expand Down
2 changes: 1 addition & 1 deletion src/suffix_tree/tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def common_substrings(self) -> List[Tuple[int, int, Path]]:
--- [Gusfield1997]_ §7.6, page 127ff
:return: a list of `K - 1` tuples containing `k`, `l(k)`, and one of the common
substrings of that length.
substrings of that length, which may be None.
>>> from suffix_tree import Tree
>>> tree = Tree(
Expand Down

0 comments on commit af41b65

Please sign in to comment.