From cdf478274aa5f7a0560f8e621c8d7bf6963f2dcf Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Mon, 26 Aug 2024 08:57:50 -0700 Subject: [PATCH] Fix angle brackets in doc comments (dart-lang/collection#358) --- pkgs/collection/lib/src/functions.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/collection/lib/src/functions.dart b/pkgs/collection/lib/src/functions.dart index fb67c9f4..db865741 100644 --- a/pkgs/collection/lib/src/functions.dart +++ b/pkgs/collection/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,