From 2ad0b6e267fd4d0639091ff5a5f92d9524e7a482 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20L=C3=B6hnn?= Date: Thu, 19 Oct 2023 07:45:54 +0200 Subject: [PATCH] Small copy change from review --- packages/melos/lib/src/commands/bootstrap.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/melos/lib/src/commands/bootstrap.dart b/packages/melos/lib/src/commands/bootstrap.dart index b514216c..33fa7a83 100644 --- a/packages/melos/lib/src/commands/bootstrap.dart +++ b/packages/melos/lib/src/commands/bootstrap.dart @@ -317,7 +317,7 @@ mixin _BootstrapMixin on _CleanMixin { }) { if (workspaceDependencies == null) return 0; // Filter out the packages that do not exist in package and only the - // dependencies that has a different version specified in the workspace. + // dependencies that have a different version specified in the workspace. final dependenciesToUpdate = workspaceDependencies.entries.where((entry) { if (!packageDependencies.containsKey(entry.key)) return false; if (packageDependencies[entry.key] == entry.value) return false;