Skip to content

Commit

Permalink
Readme: fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MMK21Hub authored Feb 25, 2024
1 parent 7fad42a commit 5bc1371
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ npm install --save json-sorted-stringify
```ts
import stringify from 'json-sorted-stringify';

stirngify ({ a: 1, b: 2 }); // => '{"a":1,"b":2}'
stirngify ({ b: 2, a: 1 }); // => '{"a":1,"b":2}'
stringify ({ a: 1, b: 2 }); // => '{"a":1,"b":2}'
stringify ({ b: 2, a: 1 }); // => '{"a":1,"b":2}'
```

## License
Expand Down

0 comments on commit 5bc1371

Please sign in to comment.