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

Unified Diff: tests/language_strong/first_class_types_literals_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/first_class_types_literals_test.dart
diff --git a/tests/language_strong/first_class_types_literals_test.dart b/tests/language_strong/first_class_types_literals_test.dart
index c0a0e0f43ca110ea1860fde08d22242bdfc7c9d9..9a03628eb58ff54869cf32087f18c6ed88725ef1 100644
--- a/tests/language_strong/first_class_types_literals_test.dart
+++ b/tests/language_strong/first_class_types_literals_test.dart
@@ -41,8 +41,8 @@ main() {
Expect.equals(String, 'hest'.runtimeType);
Expect.equals(double, (0.5).runtimeType);
Expect.equals(bool, true.runtimeType);
- Expect.equals(C, new C().runtimeType); /// 01: ok
- Expect.equals(D, new D().runtimeType); /// 02: ok
+ Expect.equals(C, new C().runtimeType); // /// 01: ok
+ Expect.equals(D, new D().runtimeType); // /// 02: ok
// runtimeType on type is idempotent.
Expect.equals((D).runtimeType, (D).runtimeType.runtimeType);

Powered by Google App Engine
This is Rietveld 408576698