From 90275489c4941fa65a9115c8c3dd1d21a969f468 Mon Sep 17 00:00:00 2001 From: Aaron Jensen Date: Wed, 5 Aug 2015 19:49:55 -0700 Subject: [PATCH] Fix missing u in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b914c8c..a4fa90c 100644 --- a/README.md +++ b/README.md @@ -211,7 +211,7 @@ u({ x: u.reject(even) }, { x: [1, 2, 3, 4] }); Like `u()`, but start with the default value if the original value is undefined. ```js -u({ x: withDefault([], { 0: 3 }) }, {}); +u({ x: u.withDefault([], { 0: 3 }) }, {}); // => { x: [3] } ```