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

Unified Diff: utils/pub/root_source.dart

Issue 11638010: Convert /** comments to /// in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix 80 column limit. Created 8 years 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: utils/pub/root_source.dart
diff --git a/utils/pub/root_source.dart b/utils/pub/root_source.dart
index ebab17ef3e2c0c9ce31754dc14bf51e026c42e0b..1de28a0a50d787c0d1478385d32dc5840482f0d1 100644
--- a/utils/pub/root_source.dart
+++ b/utils/pub/root_source.dart
@@ -8,12 +8,10 @@ import 'package.dart';
import 'pubspec.dart';
import 'source.dart';
-/**
- * A source used only for the root package when doing version resolution. It
- * contains only the root package and is unable to install packages.
- *
- * This source cannot be referenced from a pubspec.
- */
+/// A source used only for the root package when doing version resolution. It
+/// contains only the root package and is unable to install packages.
+///
nweiz 2012/12/19 20:56:07 Trailing whitespace.
Bob Nystrom 2012/12/20 02:04:15 Done.
+/// This source cannot be referenced from a pubspec.
class RootSource extends Source {
final String name = "root";
final bool shouldCache = false;

Powered by Google App Engine
This is Rietveld 408576698