Index: tests/corelib/string_test.dart |
diff --git a/tests/corelib/string_test.dart b/tests/corelib/string_test.dart |
index 49b4ac582eb9125e7156ce5885142bb4f295c535..d51d88df59637c3d9200e5c27f4348d03eaaf236 100644 |
--- a/tests/corelib/string_test.dart |
+++ b/tests/corelib/string_test.dart |
@@ -330,7 +330,7 @@ void testContains() { |
void testReplaceAll() { |
Expect.equals("AtoBtoCDtoE", "AfromBfromCDfromE".replaceAll("from", "to")); |
- // Test with the replaced string at the begining. |
+ // Test with the replaced string at the beginning. |
Expect.equals("toABtoCDtoE", "fromABfromCDfromE".replaceAll("from", "to")); |
// Test with the replaced string at the end. |