From f89315e1cf3febc3234cc30f29e69af43faf7fc6 Mon Sep 17 00:00:00 2001 From: Pavel Pomerantsev Date: Wed, 8 Apr 2015 16:04:42 +0300 Subject: [PATCH] Fix readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 983f911af5..23244d44d9 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,7 @@ results, these operations can be extremely efficient. ```javascript var myObject = {a:1,b:2,c:3}; -Seq(myObject).map(x => x * x).toObject(); +Immutable.Seq(myObject).map(x => x * x).toObject(); // { a: 1, b: 4, c: 9 } ```