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:
authorDouwe Maan <douwe@selenight.nl>2017-02-22 21:03:32 +0300
committerDouwe Maan <douwe@selenight.nl>2017-02-23 18:32:42 +0300
commite2bbbb1a9aea72e4313cdc257460eb416fe8dc0b (patch)
tree38d334adcffc86edb6024fe2d77506d601093ed2 /lib/gitlab/ci/config
parent75f5fa997de148c9bc0e5bd6e6f6050526a0b164 (diff)
Fix new offenses
Diffstat (limited to 'lib/gitlab/ci/config')
-rw-r--r--lib/gitlab/ci/config/entry/global.rb2
-rw-r--r--lib/gitlab/ci/config/entry/jobs.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/ci/config/entry/global.rb b/lib/gitlab/ci/config/entry/global.rb
index ac771662b2f..a4ec8f0ff2f 100644
--- a/lib/gitlab/ci/config/entry/global.rb
+++ b/lib/gitlab/ci/config/entry/global.rb
@@ -49,7 +49,7 @@ module Gitlab
factory = Entry::Factory.new(Entry::Jobs)
.value(@config.except(*self.class.nodes.keys))
.with(key: :jobs, parent: self,
- description: 'Jobs definition for this pipeline')
+ description: 'Jobs definition for this pipeline')
@entries[:jobs] = factory.create!
end
diff --git a/lib/gitlab/ci/config/entry/jobs.rb b/lib/gitlab/ci/config/entry/jobs.rb
index a487a3a06d6..5671a09480b 100644
--- a/lib/gitlab/ci/config/entry/jobs.rb
+++ b/lib/gitlab/ci/config/entry/jobs.rb
@@ -35,7 +35,7 @@ module Gitlab
.value(config || {})
.metadata(name: name)
.with(key: name, parent: self,
- description: "#{name} job definition.")
+ description: "#{name} job definition.")
@entries[name] = factory.create!
end