Skip to content

Commit 8fd3c0a

Browse files
author
Christopher Dierkens
committed
revert double to single quote autoformating
1 parent 4dc5607 commit 8fd3c0a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This is a fork of the brilliant
1414
[fast-deep-equal](https://github.com/epoberezkin/fast-deep-equal) with some
1515
extra handling for React.
1616

17-
![benchmark chart](https://raw.githubusercontent.com/FormidableLabs/react-fast-compare/master/assets/benchmarking.png 'benchmarking chart')
17+
![benchmark chart](https://raw.githubusercontent.com/FormidableLabs/react-fast-compare/master/assets/benchmarking.png "benchmarking chart")
1818

1919
(Check out the [benchmarking details](#benchmarking-this-library).)
2020

@@ -38,10 +38,10 @@ $ npm install react-fast-compare
3838
## Usage
3939

4040
```jsx
41-
const isEqual = require('react-fast-compare');
41+
const isEqual = require("react-fast-compare");
4242

4343
// general usage
44-
console.log(isEqual({ foo: 'bar' }, { foo: 'bar' })); // true
44+
console.log(isEqual({ foo: "bar" }, { foo: "bar" })); // true
4545

4646
// React.memo
4747
// only re-render ExpensiveComponent when the props have deeply changed

0 commit comments

Comments
 (0)