14 lines
173 B
Ruby
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
|