Chromium Code Reviews| Index: lib/coreimpl/arrays.dart |
| =================================================================== |
| --- lib/coreimpl/arrays.dart (revision 12015) |
| +++ lib/coreimpl/arrays.dart (working copy) |
| @@ -81,7 +81,7 @@ |
| throw new IllegalArgumentException("negative length $length"); |
| } |
| if (start < 0 ) { |
| - String message = "$start must be greater equal to 0"; |
| + String message = "$start must be greater than or equal to 0"; |
| throw new IndexOutOfRangeException(message); |
| } |
| if (start + length > a.length) { |