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

@@ -16,13 +16,13 @@ import {
export class GitlabTrigger implements INodeType {
description: INodeTypeDescription = {
displayName: 'Gitlab Trigger',
displayName: 'GitLab Trigger',
name: 'gitlabTrigger',
icon: 'file:gitlab.png',
group: ['trigger'],
version: 1,
subtitle: '={{$parameter["owner"] + "/" + $parameter["repository"] + ": " + $parameter["events"].join(", ")}}',
description: 'Starts the workflow when a Gitlab events occurs.',
description: 'Starts the workflow when a GitLab event occurs.',
defaults: {
name: 'Gitlab Trigger',
color: '#FC6D27',
@@ -237,7 +237,7 @@ export class GitlabTrigger implements INodeType {
if (responseData.id === undefined) {
// Required data is missing so was not successful
throw new Error('Gitlab webhook creation response did not contain the expected data.');
throw new Error('GitLab webhook creation response did not contain the expected data.');
}
const webhookData = this.getWorkflowStaticData('node');