Skip to content

Commit 820a8a1

Browse files
committed
README clarify
1 parent c7613e2 commit 820a8a1

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ and change detection techniques with simple logic. [Persistent][] data presents
99
a mutative API which does not update the data in-place, but instead always
1010
yields new updated data.
1111

12-
`Immutable` provides Persistent Immutable `List`, `Stack`, `Map`, `OrderedMap`,
13-
`Set`, `OrderedSet` and `Record`. They are highly efficient on modern JavaScript
14-
VMs by using structural sharing via [hash maps tries][] and
15-
[vector tries][] as popularized by Clojure and Scala,
16-
minimizing the need to copy or cache data.
12+
Immutable.js provides many Persistent Immutable data structures including:
13+
`List`, `Stack`, `Map`, `OrderedMap`, `Set`, `OrderedSet` and `Record`.
14+
15+
These data structures are highly efficient on modern JavaScript VMs by using
16+
structural sharing via [hash maps tries][] and [vector tries][] as popularized
17+
by Clojure and Scala, minimizing the need to copy or cache data.
1718

1819
`Immutable` also provides a lazy `Seq`, allowing efficient
1920
chaining of collection methods like `map` and `filter` without creating

0 commit comments

Comments
 (0)