Fix missing u in readme

This commit is contained in:
Aaron Jensen 2015-08-05 19:49:55 -07:00
parent a7156e29a1
commit 90275489c4

View File

@ -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. Like `u()`, but start with the default value if the original value is undefined.
```js ```js
u({ x: withDefault([], { 0: 3 }) }, {}); u({ x: u.withDefault([], { 0: 3 }) }, {});
// => { x: [3] } // => { x: [3] }
``` ```