Skip to content

Commit 7e38ff1

Browse files
authored
[Chaitanas Colossal Coaster]: Removed "effectively" from HOWTO sentence. (#3777)
* Removed effectively from HOWTO sentence. * Resorted reflinks.
1 parent 2a09812 commit 7e38ff1

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

concepts/list-methods/about.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ The order of list elements can be reversed _**in place**_ with `<list>.reverse(
136136
[3, 2, 1]
137137
```
138138

139-
A list can be re-ordered _**in place**_ with the help of `<list>.sort()`.
139+
A list can be re-ordered _**in place**_ with the help of [`<list>.sort()`][sort].
140140
Default sort order is _ascending_ from the left.
141-
The Python docs offer [additional tips and techniques for sorting][sorting how to] lists effectively.
141+
The Python docs offer [additional tips and techniques for sorting][sorting how to].
142142

143143

144144
~~~~exercism/note
@@ -266,8 +266,7 @@ For a detailed explanation of names, values, list, and nested list behavior, tak
266266
[set]: https://docs.python.org/3/library/stdtypes.html#set
267267
[shallow vs deep]: https://realpython.com/copying-python-objects/
268268
[slice notation]: https://docs.python.org/3/reference/expressions.html#slicings
269+
[sort]: https://docs.python.org/3/library/stdtypes.html#list.sort
269270
[sorted]: https://docs.python.org/3/library/functions.html#sorted
270271
[sorting how to]: https://docs.python.org/3/howto/sorting.html
271272
[tuple]: https://docs.python.org/3/library/stdtypes.html#tuple
272-
273-

exercises/concept/chaitanas-colossal-coaster/.docs/introduction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,9 @@ The `<list>.reverse()` method will reverse the order of elements **in-place**.
150150
```
151151

152152

153-
A list can be re-ordered _**in place**_ with the help of `<list>.sort()`.
153+
A list can be re-ordered _**in place**_ with the help of [`<list>.sort()`][sort].
154154
Default sort order is _ascending_ from the left.
155-
The Python docs offer [additional tips and techniques for sorting][sorting how to] lists effectively.
155+
The Python docs offer [additional tips and techniques for sorting][sorting how to].
156156

157157
~~~~exercism/note
158158
From 2002 to 2022, Python used an algorithm called [`Timsort`][timsort] internally to arrange lists, but switched to [`Powersort`][powersort] from `Python 3.11` onward.
@@ -239,7 +239,6 @@ ValueError: 10 is not in list
239239
3
240240
```
241241

242-
243242
[common sequence operations]: https://docs.python.org/3/library/stdtypes.html#common-sequence-operations
244243
[dict]: https://docs.python.org/3/library/stdtypes.html#dict
245244
[list-methods]: https://docs.python.org/3/tutorial/datastructures.html#more-on-lists
@@ -248,6 +247,7 @@ ValueError: 10 is not in list
248247
[sequence type]: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
249248
[set]: https://docs.python.org/3/library/stdtypes.html#set
250249
[slice notation]: https://docs.python.org/3/reference/expressions.html#slicings
250+
[sort]: https://docs.python.org/3/library/stdtypes.html#list.sort
251251
[sorted]: https://docs.python.org/3/library/functions.html#sorted
252252
[sorting how to]: https://docs.python.org/3/howto/sorting.html
253253
[tuple]: https://docs.python.org/3/library/stdtypes.html#tuple

0 commit comments

Comments
 (0)