doc: Fix style inconsistencies for [b]Note:[/b] paragraphs

(cherry picked from commit 788b3aa27a)
This commit is contained in:
Rémi Verschelde
2021-10-05 14:24:34 +02:00
parent 487ca87e94
commit c7eb3d25e7
26 changed files with 41 additions and 37 deletions

View File

@@ -345,7 +345,7 @@
<description>
Sorts the array using a custom method. The arguments are an object that holds the method and the name of such method. The custom method receives two arguments (a pair of elements from the array) and must return either [code]true[/code] or [code]false[/code].
For two elements [code]a[/code] and [code]b[/code], if the given method returns [code]true[/code], element [code]b[/code] will be after element [code]a[/code] in the array.
[b]Note:[/b] you cannot randomize the return value as the heapsort algorithm expects a deterministic result. Doing so will result in unexpected behavior.
[b]Note:[/b] You cannot randomize the return value as the heapsort algorithm expects a deterministic result. Doing so will result in unexpected behavior.
[codeblock]
class MyCustomSorter:
static func sort_ascending(a, b):