From 884b7ac54f2430b13d5e01d926e04753b69d4d3c Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Sat, 20 Jan 2024 22:05:32 +0100 Subject: [PATCH] fix: docs: data:append example: remove --data= --- docs/data.md | 2 +- src/commands/data/append.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/data.md b/docs/data.md index 03f2b1d..efcbe82 100644 --- a/docs/data.md +++ b/docs/data.md @@ -38,7 +38,7 @@ DESCRIPTION Append cells with the specified data after the last row in starting col EXAMPLES - $ gsheet data:append --spreadsheetId= --worksheetTitle= --data='[["1", "2", "3"]]' + $ gsheet data:append --spreadsheetId= --worksheetTitle= '[["1", "2", "3"]]' Data successfully appended to "" ``` diff --git a/src/commands/data/append.ts b/src/commands/data/append.ts index 521cee5..c6a0575 100644 --- a/src/commands/data/append.ts +++ b/src/commands/data/append.ts @@ -5,7 +5,7 @@ export default class AppendData extends Command { static description = 'Append cells with the specified data after the last row in starting col'; static examples = [ - `$ gsheet data:append --spreadsheetId= --worksheetTitle= --data='[["1", "2", "3"]]' + `$ gsheet data:append --spreadsheetId= --worksheetTitle= '[["1", "2", "3"]]' Data successfully appended to "" `,