Index: packages/quiver/lib/src/collection/delegates/queue.dart |
diff --git a/packages/quiver/lib/src/collection/delegates/queue.dart b/packages/quiver/lib/src/collection/delegates/queue.dart |
index 1c85fc756851f7906a859109634d12afeccc46b6..58688f7c8c159c3bd3c1c33fb46aabd26fada3cd 100644 |
--- a/packages/quiver/lib/src/collection/delegates/queue.dart |
+++ b/packages/quiver/lib/src/collection/delegates/queue.dart |
@@ -14,18 +14,16 @@ |
part of quiver.collection; |
-/** |
- * An implementation of [Queue] that delegates all methods to another [Queue]. |
- * For instance you can create a FruitQueue like this : |
- * |
- * class FruitQueue extends DelegatingQueue<Fruit> { |
- * final Queue<Fruit> _fruits = new Queue<Fruit>(); |
- * |
- * Queue<Fruit> get delegate => _fruits; |
- * |
- * // custom methods |
- * } |
- */ |
+/// An implementation of [Queue] that delegates all methods to another [Queue]. |
+/// For instance you can create a FruitQueue like this : |
+/// |
+/// class FruitQueue extends DelegatingQueue<Fruit> { |
+/// final Queue<Fruit> _fruits = new Queue<Fruit>(); |
+/// |
+/// Queue<Fruit> get delegate => _fruits; |
+/// |
+/// // custom methods |
+/// } |
abstract class DelegatingQueue<E> extends DelegatingIterable<E> |
implements Queue<E> { |
Queue<E> get delegate; |