From 97a5d1e0f3ec4ddc3b0a087f88515610dddd56ba Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Sat, 14 Dec 2024 19:05:30 -0600 Subject: [PATCH] Fix doc comment in test --- test/list_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/list_test.dart b/test/list_test.dart index 12a3688..e008d71 100644 --- a/test/list_test.dart +++ b/test/list_test.dart @@ -320,9 +320,9 @@ void main() { typedef ListFn = FutureOr> Function(String glob, {bool recursive, bool followLinks, bool? caseSensitive}); -/// Runs [callback] in two groups with two values of [listFn]: one that uses +/// Runs [callback] in two groups with two values of [ListFn]: one that uses /// `Glob.list`, one that uses `Glob.listSync`. -void syncAndAsync(FutureOr Function(ListFn) callback) { +void syncAndAsync(FutureOr Function(ListFn) callback) { group('async', () { callback((pattern, {recursive = false, followLinks = true, caseSensitive}) { var glob =