Update a test comment

Change-Id: I6bb053a128a689d35ae1c21b29c6a7e8bb869fad
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/101321
Reviewed-by: Leaf Petersen <leafp@google.com>
Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
diff --git a/tests/language_2/nnbd/static_errors/late_final_without_initializer.dart b/tests/language_2/nnbd/static_errors/late_final_without_initializer.dart
index a5cbe56..8386210 100644
--- a/tests/language_2/nnbd/static_errors/late_final_without_initializer.dart
+++ b/tests/language_2/nnbd/static_errors/late_final_without_initializer.dart
@@ -4,8 +4,8 @@
 
 // SharedOptions=--enable-experiment=non-nullable
 
-// Test that it is not a compile time error to write to a `final` variable if
-// that variable is declared `late` and does not have an initializer.
+// Test that it is not a compile time error for a `final` variable to not have
+// an initializer if that variable is declared as `late`.
 import 'package:expect/expect.dart';
 import 'dart:core';