Skip to content

Commit

Permalink
docs: Remove extra $ in bash commands in installation.md (#5359)
Browse files Browse the repository at this point in the history
The `$` sign is currently part of the text copied,
so the command fails when pasted in a terminal.
  • Loading branch information
cairomassimo authored Feb 17, 2024
1 parent b78b99b commit c42e95a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,29 @@ Install your table adapter as a dependency using your favorite npm package manag
## React Table

```bash
$ npm install @tanstack/react-table
npm install @tanstack/react-table
```

## Solid Table

```bash
$ npm install @tanstack/solid-table
npm install @tanstack/solid-table
```

## Svelte Table

```bash
$ npm install @tanstack/svelte-table
npm install @tanstack/svelte-table
```

## Vue Table

```bash
$ npm install @tanstack/vue-table
npm install @tanstack/vue-table
```

## Table Core (no framework)

```bash
$ npm install @tanstack/table-core
npm install @tanstack/table-core
```

0 comments on commit c42e95a

Please sign in to comment.