@@ -1845,7 +1845,7 @@ defmodule Enum do
1845
1845
Returns the maximal element in the `enumerable` according
1846
1846
to Erlang's term ordering.
1847
1847
1848
- By default, the comparison is done with the `>=` sorter function.
1848
+ By default, the comparison is done with the [ `>=`](`>=/2`) sorter function.
1849
1849
If multiple elements are considered maximal, the first one that
1850
1850
was found is returned. If you want the last element considered
1851
1851
maximal to be returned, the sorter function should not return true
@@ -1912,7 +1912,7 @@ defmodule Enum do
1912
1912
Returns the maximal element in the `enumerable` as calculated
1913
1913
by the given `fun`.
1914
1914
1915
- By default, the comparison is done with the `>=` sorter function.
1915
+ By default, the comparison is done with the [ `>=`](`>=/2`) sorter function.
1916
1916
If multiple elements are considered maximal, the first one that
1917
1917
was found is returned. If you want the last element considered
1918
1918
maximal to be returned, the sorter function should not return true
@@ -2025,7 +2025,7 @@ defmodule Enum do
2025
2025
Returns the minimal element in the `enumerable` according
2026
2026
to Erlang's term ordering.
2027
2027
2028
- By default, the comparison is done with the `<=` sorter function.
2028
+ By default, the comparison is done with the [ `<=`](`<=/2`) sorter function.
2029
2029
If multiple elements are considered minimal, the first one that
2030
2030
was found is returned. If you want the last element considered
2031
2031
minimal to be returned, the sorter function should not return true
@@ -2092,7 +2092,7 @@ defmodule Enum do
2092
2092
Returns the minimal element in the `enumerable` as calculated
2093
2093
by the given `fun`.
2094
2094
2095
- By default, the comparison is done with the `<=` sorter function.
2095
+ By default, the comparison is done with the [ `<=`](`<=/2`) sorter function.
2096
2096
If multiple elements are considered minimal, the first one that
2097
2097
was found is returned. If you want the last element considered
2098
2098
minimal to be returned, the sorter function should not return true
@@ -2148,7 +2148,7 @@ defmodule Enum do
2148
2148
Returns a tuple with the minimal and the maximal elements in the
2149
2149
enumerable.
2150
2150
2151
- By default, the comparison is done with the `<` sorter function,
2151
+ By default, the comparison is done with the [ `<`](`</2`) sorter function,
2152
2152
as the function must not return true for equal elements.
2153
2153
2154
2154
## Examples
@@ -2263,8 +2263,8 @@ defmodule Enum do
2263
2263
Returns a tuple with the minimal and the maximal elements in the
2264
2264
enumerable as calculated by the given function.
2265
2265
2266
- By default, the comparison is done with the `<` sorter function,
2267
- as the function must not return true for equal elements.
2266
+ By default, the comparison is done with the [ `<`](`</2`) sorter function,
2267
+ as the function must not return ` true` for equal elements.
2268
2268
2269
2269
## Examples
2270
2270
0 commit comments