summaryrefslogtreecommitdiff
path: root/app/services/system_note_service.rb
diff options
context:
space:
mode:
authorjurre <jurrestender+github@gmail.com>2016-12-20 15:23:20 +0100
committerjurre <jurrestender+github@gmail.com>2016-12-20 16:14:09 +0100
commit33564b113386b3b9c1606dcc2ff7251c178667e5 (patch)
tree4088e21aaf933f06ef26292909d37c8c2e019997 /app/services/system_note_service.rb
parentd84cfeaf21bb60c09061ad6c7bf135c37d063162 (diff)
downloadgitlab-ce-33564b113386b3b9c1606dcc2ff7251c178667e5.tar.gz
Make 'unmarked as WIP' message more consistent
Diffstat (limited to 'app/services/system_note_service.rb')
-rw-r--r--app/services/system_note_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/system_note_service.rb b/app/services/system_note_service.rb
index 8b48d90f60b..7613ecd5021 100644
--- a/app/services/system_note_service.rb
+++ b/app/services/system_note_service.rb
@@ -146,7 +146,7 @@ module SystemNoteService
end
def remove_merge_request_wip(noteable, project, author)
- body = 'unmarked as a Work In Progress'
+ body = 'unmarked as a **Work In Progress**'
create_note(noteable: noteable, project: project, author: author, note: body)
end