diff --git a/lib/src/functions.dart b/lib/src/functions.dart index fb67c9f..db86574 100644 --- a/lib/src/functions.dart +++ b/lib/src/functions.dart @@ -65,8 +65,8 @@ Map> groupBy(Iterable values, T Function(S) key) { /// value. /// /// The values returned by [orderBy] are compared using the [compare] function. -/// If [compare] is omitted, values must implement [Comparable] and they are -/// compared using their [Comparable.compareTo]. +/// If [compare] is omitted, values must implement [Comparable]`` and they +/// are compared using their [Comparable.compareTo]. /// /// Returns `null` if [values] is empty. S? minBy(Iterable values, T Function(S) orderBy, @@ -89,8 +89,8 @@ S? minBy(Iterable values, T Function(S) orderBy, /// value. /// /// The values returned by [orderBy] are compared using the [compare] function. -/// If [compare] is omitted, values must implement [Comparable] and they are -/// compared using their [Comparable.compareTo]. +/// If [compare] is omitted, values must implement [Comparable]`` and they +/// are compared using their [Comparable.compareTo]. /// /// Returns `null` if [values] is empty. S? maxBy(Iterable values, T Function(S) orderBy,