Index: tests/corelib_strong/list_test.dart |
diff --git a/tests/corelib_strong/list_test.dart b/tests/corelib_strong/list_test.dart |
index 889a916626e225d6bb504260958110aa1ac9a25c..0323c1de89dafea2cfaaed3e26a917b21e4e4433 100644 |
--- a/tests/corelib_strong/list_test.dart |
+++ b/tests/corelib_strong/list_test.dart |
@@ -301,7 +301,7 @@ void testLengthInvariantOperations(List list) { |
testArgumentError(() => list.setRange(-1, 5, [1, 2, 3, 4, 5, 6])); |
testArgumentError(() => list.setRange(2, 5, [1, 2, 3])); |
testArgumentError(() => list.setRange(4, 2, [1, 2])); |
- // for setAll, end is implictly start + values.length. |
+ // for setAll, end is implicitly start + values.length. |
testArgumentError(() => list.setAll(-1, [])); |
testArgumentError(() => list.setAll(5, [])); |
testArgumentError(() => list.setAll(2, [1, 2, 3])); |