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

@@ -17,7 +17,7 @@ export class MySql implements INodeType {
icon: 'file:mysql.png',
group: ['input'],
version: 1,
description: 'Gets, add and update data in MySQL.',
description: 'Get, add and update data in MySQL.',
defaults: {
name: 'MySQL',
color: '#4279a2',
@@ -39,7 +39,7 @@ export class MySql implements INodeType {
{
name: 'Execute Query',
value: 'executeQuery',
description: 'Executes a SQL query.',
description: 'Execute an SQL query.',
},
{
name: 'Insert',
@@ -49,7 +49,7 @@ export class MySql implements INodeType {
{
name: 'Update',
value: 'update',
description: 'Updates rows in database.',
description: 'Update rows in database.',
},
],
default: 'insert',