From 420def336582859c4f69def6f7734d2ee13408c9 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Sun, 25 Aug 2024 12:45:31 -0500 Subject: [PATCH] Fix angle brackets in doc comments --- lib/src/functions.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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,