Index: lib/src/async_memoizer.dart |
diff --git a/lib/src/async_memoizer.dart b/lib/src/async_memoizer.dart |
index 41c3dae87a46054708456ced01a04d582891cb07..81181a177d304ab592345fde3f3678016d301120 100644 |
--- a/lib/src/async_memoizer.dart |
+++ b/lib/src/async_memoizer.dart |
@@ -2,8 +2,6 @@ |
// 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. |
-library async.async_memoizer; |
- |
import 'dart:async'; |
/// A class for running an asynchronous function exactly once and caching its |
@@ -35,7 +33,7 @@ class AsyncMemoizer<T> { |
Future<T> get future => _completer.future; |
final _completer = new Completer(); |
- /// Whether [run] has been called yet. |
+ /// Whether [runOnce] has been called yet. |
bool get hasRun => _completer.isCompleted; |
/// Runs the function, [computation], if it hasn't been run before. |