diff --git a/README.md b/README.md index f961c9d..f7ef1f0 100644 --- a/README.md +++ b/README.md @@ -531,7 +531,7 @@ given.array(['a', 'b', 'c']).nth(-1) // 'c' Return all items that don't pass the given truth test. Inverse of `Array.filter`. ```javascript -given.array([{ id: 1, disabled: true }]).reject(item => item.disabled) +given.array([{ id: 1, disabled: true }]).reject(item => item.disabled) // [] ``` ### until