summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authordimitrieh <dimitriehoekstra@gmail.com>2017-02-20 17:08:29 +0100
committerdimitrieh <dimitriehoekstra@gmail.com>2017-02-20 17:08:29 +0100
commitb86640fee90a7bc7b752b0d66ac7310dd9673b23 (patch)
tree36bf7bf98fa8df13bca62330d980f9837e09fa74 /lib
parentcd04235efe4dd20accc9c7e1567fe5ccf95f7780 (diff)
downloadgitlab-ce-b86640fee90a7bc7b752b0d66ac7310dd9673b23.tar.gz
fixed specs + docs
Diffstat (limited to 'lib')
-rw-r--r--lib/api/pipelines.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api/pipelines.rb b/lib/api/pipelines.rb
index b634b1d0222..f59f7959173 100644
--- a/lib/api/pipelines.rb
+++ b/lib/api/pipelines.rb
@@ -23,7 +23,7 @@ module API
pipelines = PipelinesFinder.new(user_project).execute(scope: params[:scope])
present paginate(pipelines), with: Entities::Pipeline
end
-
+
desc 'Create a new pipeline' do
detail 'This feature was introduced in GitLab 8.14'
success Entities::Pipeline
@@ -58,7 +58,7 @@ module API
present pipeline, with: Entities::Pipeline
end
- desc 'Retry failed builds in the pipeline' do
+ desc 'Retry builds in the pipeline' do
detail 'This feature was introduced in GitLab 8.11.'
success Entities::Pipeline
end