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

Unified Diff: pkg/polymer/lib/src/job.dart

Issue 180373003: [polymer] switch comment style (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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: pkg/polymer/lib/src/job.dart
diff --git a/pkg/polymer/lib/src/job.dart b/pkg/polymer/lib/src/job.dart
index 5ba818fd3231f1e04686810919fb01e550325a79..e92d0c85e4ec8796d489302fa1303749e6d88ae1 100644
--- a/pkg/polymer/lib/src/job.dart
+++ b/pkg/polymer/lib/src/job.dart
@@ -4,14 +4,12 @@
part of polymer;
-/**
- * Invoke [callback] in [wait], unless the job is re-registered,
- * which resets the timer. For example:
- *
- * _myJob = runJob(_myJob, callback, const Duration(milliseconds: 100));
- *
- * Returns a job handle which can be used to re-register a job.
- */
+/// Invoke [callback] in [wait], unless the job is re-registered,
+/// which resets the timer. For example:
+///
+/// _myJob = runJob(_myJob, callback, const Duration(milliseconds: 100));
+///
+/// Returns a job handle which can be used to re-register a job.
// Dart note: renamed to runJob to avoid conflict with instance member "job".
_Job _runJob(_Job job, void callback(), Duration wait) {
if (job != null) {

Powered by Google App Engine
This is Rietveld 408576698