diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2017-02-20 15:54:37 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2017-02-20 15:54:37 +0100 |
commit | 7d31cf8601be5e8344710579796e919d84c1f586 (patch) | |
tree | 1459c1d921490745ddaf33b37604634fcf268bae /lib/api/commits.rb | |
parent | 173dbeb972d0da365ac77129d0e12727ae571e91 (diff) | |
download | gitlab-ce-7d31cf8601be5e8344710579796e919d84c1f586.tar.gz |
Fix some grammar in the API docs
Diffstat (limited to 'lib/api/commits.rb')
-rw-r--r-- | lib/api/commits.rb | 4 |
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' |