From fceaa005cd1837cd3d664414e336b10b828caf28 Mon Sep 17 00:00:00 2001 From: Daco Harkes Date: Mon, 31 Jul 2023 13:05:11 +0200 Subject: [PATCH] [doc] Fix module_test_ios comments (#131470) --- dev/devicelab/bin/tasks/module_test_ios.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/devicelab/bin/tasks/module_test_ios.dart b/dev/devicelab/bin/tasks/module_test_ios.dart index 86d47afe357..a213bbee26f 100644 --- a/dev/devicelab/bin/tasks/module_test_ios.dart +++ b/dev/devicelab/bin/tasks/module_test_ios.dart @@ -27,8 +27,8 @@ Future main() async { }, ); - // this variable cannot be `late`, as we reference it in the `finally` block - // which may execute before this field has been initialized + // This variable cannot be `late`, as we reference it in the `finally` block + // which may execute before this field has been initialized. String? simulatorDeviceId; section('Create Flutter module project'); @@ -51,7 +51,7 @@ Future main() async { final Directory flutterModuleLibSource = Directory(path.join(flutterDirectory.path, 'dev', 'integration_tests', 'ios_host_app', 'flutterapp', 'lib')); final Directory flutterModuleLibDestination = Directory(path.join(projectDir.path, 'lib')); - // These test files don't have a .dart prefix so the analyzer will ignore them. They aren't in a + // These test files don't have a .dart extension so the analyzer will ignore them. They aren't in a // package and don't work on their own outside of the test module just created. final File main = File(path.join(flutterModuleLibSource.path, 'main')); main.copySync(path.join(flutterModuleLibDestination.path, 'main.dart'));