diff options
author | Marcel Amirault <ravlen@gmail.com> | 2018-09-17 09:17:33 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2018-09-17 09:17:33 +0000 |
commit | 6876c7afa8ccb5e21f2792362bec7567b5c3734d (patch) | |
tree | 00e3c3d155a54a2665ee571e5eba0e1b0cd8a80d /app/assets/javascripts/notes.js | |
parent | cdc4cd09e74bebf52250581dcbd99cfd8848aaeb (diff) | |
download | gitlab-ce-6876c7afa8ccb5e21f2792362bec7567b5c3734d.tar.gz |
Fix grammar (setup to set-up) in code comments, spec, views, etc.
Diffstat (limited to 'app/assets/javascripts/notes.js')
-rw-r--r-- | app/assets/javascripts/notes.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/notes.js b/app/assets/javascripts/notes.js index 8b1d8f6055e..0c966e0808a 100644 --- a/app/assets/javascripts/notes.js +++ b/app/assets/javascripts/notes.js @@ -631,7 +631,7 @@ export default class Notes { * * deactivates the submit button when text is empty * hides the preview button when text is empty - * setup GFM auto complete + * set up GFM auto complete * show the form */ setupNoteForm(form, enableGFM = defaultAutocompleteConfig) { @@ -954,7 +954,7 @@ export default class Notes { * Note: dataHolder must have the "discussionId" and "lineCode" data attributes set. */ setupDiscussionNoteForm(dataHolder, form) { - // setup note target + // set up note target let diffFileData = dataHolder.closest('.text-file'); if (diffFileData.length === 0) { @@ -1036,7 +1036,7 @@ export default class Notes { $diffFile[0].dispatchEvent(clickEvent); - // Setup comment form + // Set up comment form let newForm; const $noteContainer = $link.closest('.diff-viewer').find('.note-container'); const $form = $noteContainer.find('> .discussion-form'); |