Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/data.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ DESCRIPTION
Append cells with the specified data after the last row in starting col

EXAMPLES
$ gsheet data:append --spreadsheetId=<spreadsheetId> --worksheetTitle=<worksheetTitle> --data='[["1", "2", "3"]]'
$ gsheet data:append --spreadsheetId=<spreadsheetId> --worksheetTitle=<worksheetTitle> '[["1", "2", "3"]]'
Data successfully appended to "<worksheetTitle>"
```

Expand Down
2 changes: 1 addition & 1 deletion src/commands/data/append.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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=<spreadsheetId> --worksheetTitle=<worksheetTitle> --data='[["1", "2", "3"]]'
`$ gsheet data:append --spreadsheetId=<spreadsheetId> --worksheetTitle=<worksheetTitle> '[["1", "2", "3"]]'

Data successfully appended to "<worksheetTitle>"
`,
Expand Down