Prefer single quotes

This commit is contained in:
blackst0ne 2017-05-03 16:49:00 +11:00
parent 571c832d31
commit d9f48e45a1
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ module SystemNoteService
#
# Returns the created Note object
def change_description(noteable, project, author)
body = "changed the description"
body = 'changed the description'
create_note(NoteSummary.new(noteable, project, author, body, action: 'description'))
end