Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Unified Diff: tests/language_strong/substring_test.dart

Issue 2763823002: Move spaces from before comments to within comments (Closed)
Patch Set: Fix comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/language_strong/substring_test.dart
diff --git a/tests/language_strong/substring_test.dart b/tests/language_strong/substring_test.dart
index aee577778d03621ea9e3a30f04a792af1c7d0751..e2dc3f1712a8d23345085d39dd44c8996c1e2c52 100644
--- a/tests/language_strong/substring_test.dart
+++ b/tests/language_strong/substring_test.dart
@@ -8,8 +8,8 @@ import "package:expect/expect.dart";
main() {
try {
- print("abcdef".substring(1.5, 3.5)); /// 01: static type warning
- Expect.fail("Should have thrown an exception"); /// 01: continued
+ print("abcdef".substring(1.5, 3.5)); // /// 01: static type warning
+ Expect.fail("Should have thrown an exception"); // /// 01: continued
} on TypeError catch (e) {
// OK.
} on ArgumentError catch (e) {

Powered by Google App Engine
This is Rietveld 408576698