Skip to content

Commit a99e858

Browse files
committed
doc: use spaces
1 parent fdf99a5 commit a99e858

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Provide a custom `isEqual` function to compare objects.
9393

9494
```ts
9595
const [current, previous] = withPrevious(0, {
96-
isEqual: (a, b) => a.name === b.name && a.age === b.age,
96+
isEqual: (a, b) => a.name === b.name && a.age === b.age,
9797
});
9898
```
9999

@@ -103,6 +103,6 @@ It is also possible to use [lodash.isequal](https://www.npmjs.com/package/lodash
103103
import isEqual from 'lodash.isequal';
104104

105105
const [current, previous] = withPrevious(0, {
106-
isEqual: isEqual,
106+
isEqual: isEqual,
107107
});
108108
```

0 commit comments

Comments
 (0)