Skip to content

Commit 03763ca

Browse files
authored
Correct some typos (#75)
1 parent 2659334 commit 03763ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The `SortingAlgorithms` package provides three sorting algorithms that can be us
88

99
- [HeapSort] – an unstable, general purpose, in-place, O(n log n) comparison sort that works by heapifying an array and repeatedly taking the maximal element from the heap.
1010
- [TimSort] – a stable, general purpose, hybrid, O(n log n) comparison sort that adapts to different common patterns of partially ordered input data.
11-
- [CombSort] – an unstable, general purpose, in-place, O(n log n) comparison sort with O(n^2) pathological cases that can attain good efficiency through SIMD instructions and instruction level paralellism on modern hardware.
11+
- [CombSort] – an unstable, general purpose, in-place, O(n log n) comparison sort with O(n^2) pathological cases that can attain good efficiency through SIMD instructions and instruction level parallelism on modern hardware.
1212

1313
[HeapSort]: https://en.wikipedia.org/wiki/Heapsort
1414
[TimSort]: https://en.wikipedia.org/wiki/Timsort

src/SortingAlgorithms.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ end
2222
const HeapSort = maybe_optimize(HeapSortAlg())
2323
const TimSort = maybe_optimize(TimSortAlg())
2424
# Whenever InitialOptimizations is defined, RadixSort falls
25-
# back to Base.DEFAULT_STABLE which already incldues them.
25+
# back to Base.DEFAULT_STABLE which already includes them.
2626
const RadixSort = RadixSortAlg()
2727

2828
"""

0 commit comments

Comments
 (0)