Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRubén Dávila <rdavila84@gmail.com>2016-01-09 03:05:55 +0300
committerRubén Dávila <rdavila84@gmail.com>2016-01-09 03:05:55 +0300
commit78d7c0e0d81c40e0d9541e4ef0dd15df30d457e3 (patch)
treece74cbef2f775ad6983d5a8f8e3efc0f404c5e31 /lib/gitlab/diff
parent52f8286a02bab5af1ebbf0fb7bcccff56c74ab9f (diff)
Fix broken specs. #3945
Diffstat (limited to 'lib/gitlab/diff')
-rw-r--r--lib/gitlab/diff/highlight.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/gitlab/diff/highlight.rb b/lib/gitlab/diff/highlight.rb
index 7dd44b6004a..caeefe5bbdd 100644
--- a/lib/gitlab/diff/highlight.rb
+++ b/lib/gitlab/diff/highlight.rb
@@ -27,11 +27,11 @@ module Gitlab
def self.formatter
@formatter ||= Rouge::Formatters::HTMLGitlab.new(
- nowrap: true,
- cssclass: 'code highlight',
- lineanchors: true,
- lineanchorsid: 'LC'
- )
+ nowrap: true,
+ cssclass: 'code highlight',
+ lineanchors: true,
+ lineanchorsid: 'LC'
+ )
end
def initialize(diff_file)