Skip to content

Commit

Permalink
docs: minor fixes (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
twistedstream authored Mar 8, 2024
1 parent 9878e17 commit 92e7ba7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![google-sheets-table banner](./media/banner.svg)

![Release](https://img.shields.io/npm/v/google-sheets-table)
[![Release](https://img.shields.io/npm/v/google-sheets-table)](https://www.npmjs.com/package/google-sheets-table)
[![build](https://github.com/twistedstream/google-sheets-table/actions/workflows/build.yml/badge.svg)](https://github.com/twistedstream/google-sheets-table/actions)
![Downloads](https://img.shields.io/npm/dw/google-sheets-table)
[![License](https://img.shields.io/:license-mit-blue.svg?style=flat)](https://opensource.org/licenses/MIT)
Expand Down Expand Up @@ -118,7 +118,7 @@ Finding rows and sorting them:
```javascript
const { rows: sortedRows } = await table.findRows(
(r) => r.quantity < 50,
[{ asc: "department" }, { desc: "name" }]
[{ asc: "department" }, { desc: "name" }],
);
console.log(sortedRows);
// => [
Expand Down
1 change: 0 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ export type Range = {
export type ConstraintViolation = {
/**
* The type of constraint violation.
* @date 3/6/2024 - 8:43:03 AM
*
* @type {"unique"}
*/
Expand Down

0 comments on commit 92e7ba7

Please sign in to comment.