From 07d9ee52ea772a130a0979b9cd080532b816b879 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Mon, 16 Dec 2024 11:42:14 -0600 Subject: [PATCH] Fix doc comment in test (dart-lang/glob#101) --- pkgs/glob/test/list_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/glob/test/list_test.dart b/pkgs/glob/test/list_test.dart index 12a3688f1..e008d71cc 100644 --- a/pkgs/glob/test/list_test.dart +++ b/pkgs/glob/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 =