gitlab-org--gitlab-foss/lib/gitlab/word_diff/segments/newline.rb

14 lines
173 B
Ruby

# frozen_string_literal: true
module Gitlab
module WordDiff
module Segments
class Newline
def to_s
''
end
end
end
end
end