diff options
author | Bob Van Landuyt <bob@gitlab.com> | 2017-03-10 13:05:35 +0100 |
---|---|---|
committer | Bob Van Landuyt <bob@gitlab.com> | 2017-03-13 08:27:52 +0100 |
commit | 4224124ddf5c47409af488c21caf10525edcde16 (patch) | |
tree | 2ab025b4fafad0957dc241db9dd96e4b8a522a57 | |
parent | ea70a0d674539d53e40c63a0a3cebef33d7e13b7 (diff) | |
download | gitlab-ce-4224124ddf5c47409af488c21caf10525edcde16.tar.gz |
Update copy
One comments *on* something, not *in* something
-rw-r--r-- | app/services/issues/build_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/issues/build_service.rb b/app/services/issues/build_service.rb index 510b32a77ab..77bced4bd5c 100644 --- a/app/services/issues/build_service.rb +++ b/app/services/issues/build_service.rb @@ -39,7 +39,7 @@ module Issues other_note_count = discussion.notes.size - 1 note_url = Gitlab::UrlBuilder.build(first_note) - discussion_info = "- [ ] #{first_note.author.to_reference} commented in a [discussion](#{note_url}): " + discussion_info = "- [ ] #{first_note.author.to_reference} commented on a [discussion](#{note_url}): " discussion_info << " (+#{other_note_count} #{'comment'.pluralize(other_note_count)})" if other_note_count > 0 note_without_block_quotes = Banzai::Filter::BlockquoteFenceFilter.new(first_note.note).call |