Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-03-19 01:27:35 +0300
committerRémy Coutable <remy@rymai.me>2016-03-19 01:27:35 +0300
commit0b942541da1dc616cea266dc1f4d517fe81f6e5a (patch)
tree9b103ba9425031151b5629dc6f0ce8ae7298e7d3 /app/services/system_note_service.rb
parentd4b49587b9f7279362641d4b6cfabd093e21d629 (diff)
Improve the "easy WIP & un-WIP from link" feature
Diffstat (limited to 'app/services/system_note_service.rb')
-rw-r--r--app/services/system_note_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/system_note_service.rb b/app/services/system_note_service.rb
index e579ca76565..2404ac2ff4c 100644
--- a/app/services/system_note_service.rb
+++ b/app/services/system_note_service.rb
@@ -145,13 +145,13 @@ class SystemNoteService
end
def self.remove_merge_request_wip(noteable, project, author)
- body = 'Unmarked this merge request as Work In Progress'
+ body = 'Unmarked this merge request as a Work In Progress'
create_note(noteable: noteable, project: project, author: author, note: body)
end
def self.add_merge_request_wip(noteable, project, author)
- body = 'Marked this merge request as **Work In Progress**'
+ body = 'Marked this merge request as a **Work In Progress**'
create_note(noteable: noteable, project: project, author: author, note: body)
end