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
path: root/lib/api
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2017-02-20 19:08:37 +0300
committerRobert Speicher <robert@gitlab.com>2017-02-20 19:08:37 +0300
commit6df411b442d5791c67d5193b90a609cfe23aa6f5 (patch)
tree21d064cd76aec0f301d969302e617678626ae930 /lib/api
parent5643e4d1ea8899f32e39be0f393f7be3c4b206c4 (diff)
parent7d31cf8601be5e8344710579796e919d84c1f586 (diff)
Merge branch 'fix-grammar' into 'master'
Fix some grammar in the API docs See merge request !9379
Diffstat (limited to 'lib/api')
-rw-r--r--lib/api/commits.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api/commits.rb b/lib/api/commits.rb
index f0ed5f34419..3b314c89c6e 100644
--- a/lib/api/commits.rb
+++ b/lib/api/commits.rb
@@ -16,8 +16,8 @@ module API
end
params do
optional :ref_name, type: String, desc: 'The name of a repository branch or tag, if not given the default branch is used'
- optional :since, type: DateTime, desc: 'Only commits after or in this date will be returned'
- optional :until, type: DateTime, desc: 'Only commits before or in this date will be returned'
+ optional :since, type: DateTime, desc: 'Only commits after or on this date will be returned'
+ optional :until, type: DateTime, desc: 'Only commits before or on this date will be returned'
optional :page, type: Integer, default: 0, desc: 'The page for pagination'
optional :per_page, type: Integer, default: 20, desc: 'The number of results per page'
optional :path, type: String, desc: 'The file path'