Index: pkg/collection/README.md |
diff --git a/pkg/collection_helpers/README.md b/pkg/collection/README.md |
similarity index 80% |
copy from pkg/collection_helpers/README.md |
copy to pkg/collection/README.md |
index 742cc167687f8951dba3f499821d85029bd24e31..bb392fd385d420ee42f4f7656ecc0707c4cd1fa5 100644 |
--- a/pkg/collection_helpers/README.md |
+++ b/pkg/collection/README.md |
@@ -1,20 +1,20 @@ |
Helper libraries for working with collections. |
-The `collection_helpers` package contains a number of separate libraries |
+The `collection` package contains a number of separate libraries |
with utility functions and classes that makes working with collections easier. |
## Using |
-The `collection_helpers` library can be imported as separate libraries, or |
+The `collection` package can be imported as separate libraries, or |
in totality: |
- import 'package:collection_helpers/equality.dart'; |
- import 'package:collection_helpers/algorithms.dart'; |
- import 'package:collection_helpers/wrappers.dart'; |
+ import 'package:collection/equality.dart'; |
+ import 'package:collection/algorithms.dart'; |
+ import 'package:collection/wrappers.dart'; |
or |
- import 'package:collection_helpers/all.dart'; |
+ import 'package:collection/collection.dart'; |
## Equality |