From 958a208d8a5e4d3ac1f283e19ee50ab422be44ca Mon Sep 17 00:00:00 2001 From: Massimo Cairo Date: Sat, 17 Feb 2024 13:00:07 +0200 Subject: [PATCH] Remove extra $ in bash commands in installation.md The `$` sign is currently part of the text copied, so the command fails when pasted in a terminal. --- docs/installation.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 30aa444a24..1176bb33c8 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -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 ```