Convert /** comments to /// in pub.
Previously, it was a mix of both styles. Now it's consistent. :)
Review URL: https://codereview.chromium.org//11638010
git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@16354 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/lib/src/git.dart b/lib/src/git.dart
index 6defde3..b216735 100644
--- a/lib/src/git.dart
+++ b/lib/src/git.dart
@@ -2,9 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-/**
- * Helper functionality for invoking Git.
- */
+/// Helper functionality for invoking Git.
library git;
import 'io.dart';
@@ -84,4 +82,4 @@
});
return completer.future;
-}
\ No newline at end of file
+}