We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2a2dc6 commit e0c3df1Copy full SHA for e0c3df1
pydatastructs/linear_data_structures/algorithms.py
@@ -1807,7 +1807,7 @@ def intro_sort(array, **kwargs) -> Array:
1807
intro_sort, kwargs.get('backend', Backend.PYTHON))
1808
1809
# Always sorts in increasing order, this is because of
1810
- # heapsort's limitation
+ # heapsort's limitatio
1811
comp = lambda u, v: u <= v
1812
lower = kwargs.get('start', 0)
1813
upper = kwargs.get('end', len(array) - 1)
0 commit comments