diff options
author | dimitrieh <dimitriehoekstra@gmail.com> | 2017-02-20 17:08:29 +0100 |
---|---|---|
committer | dimitrieh <dimitriehoekstra@gmail.com> | 2017-02-20 17:08:29 +0100 |
commit | b86640fee90a7bc7b752b0d66ac7310dd9673b23 (patch) | |
tree | 36bf7bf98fa8df13bca62330d980f9837e09fa74 /lib | |
parent | cd04235efe4dd20accc9c7e1567fe5ccf95f7780 (diff) | |
download | gitlab-ce-b86640fee90a7bc7b752b0d66ac7310dd9673b23.tar.gz |
fixed specs + docs
Diffstat (limited to 'lib')
-rw-r--r-- | lib/api/pipelines.rb | 4 |
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 |