Fixed typos and grammatical errors (#791)

* 🐛 Fixed typos and grammatical errors

* 🐛 Made changes based on Tanay's feedback
This commit is contained in:
smamudhan
2020-07-24 16:26:41 +05:30
committed by GitHub
parent 546995aa4f
commit 725d2d16fc
42 changed files with 92 additions and 96 deletions

View File

@@ -84,32 +84,32 @@ export class GoogleSheets implements INodeType {
{
name: 'Append',
value: 'append',
description: 'Appends the data to a Sheet',
description: 'Append data to a sheet',
},
{
name: 'Clear',
value: 'clear',
description: 'Clears data from a Sheet',
description: 'Clear data from a sheet',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete columns and rows from a Sheet',
description: 'Delete columns and rows from a sheet',
},
{
name: 'Lookup',
value: 'lookup',
description: 'Looks for a specific column value and then returns the matching row'
description: 'Look up a specific column value and return the matching row'
},
{
name: 'Read',
value: 'read',
description: 'Reads data from a Sheet'
description: 'Read data from a sheet'
},
{
name: 'Update',
value: 'update',
description: 'Updates rows in a sheet'
description: 'Update rows in a sheet'
},
],
default: 'read',