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

Unified Diff: pkg/unittest/lib/src/test_case.dart

Issue 140783013: use proper notation for true, false, and null in doc comments (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: long line Created 6 years, 11 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
« no previous file with comments | « pkg/unittest/lib/src/configuration.dart ('k') | pkg/unittest/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/src/test_case.dart
diff --git a/pkg/unittest/lib/src/test_case.dart b/pkg/unittest/lib/src/test_case.dart
index 820fce386f87ecb2dc7fb0e57d4c066ac34b6a2b..0c65e423c0da5d99fe94767b33e91d546ad54107 100644
--- a/pkg/unittest/lib/src/test_case.dart
+++ b/pkg/unittest/lib/src/test_case.dart
@@ -37,7 +37,7 @@ class TestCase {
String _result;
/**
- * One of [PASS], [FAIL], [ERROR], or [null] if the test hasn't run yet.
+ * One of [PASS], [FAIL], [ERROR], or [:null:] if the test hasn't run yet.
*/
String get result => _result;
@@ -45,7 +45,7 @@ class TestCase {
bool get passed => _result == PASS;
StackTrace _stackTrace;
- /** Stack trace associated with this test, or [null] if it succeeded. */
+ /** Stack trace associated with this test, or [:null:] if it succeeded. */
StackTrace get stackTrace => _stackTrace;
/** The group (or groups) under which this test is running. */
« no previous file with comments | « pkg/unittest/lib/src/configuration.dart ('k') | pkg/unittest/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698