summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2018-01-09 18:34:44 -0200
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2018-01-09 18:48:36 -0200
commit80b8fe24a18151eae7262589432a3158354c7273 (patch)
tree3e5fa71b3d2e7fb7ca1feebae678442b614849af
parent9afb77b6d409ce385b872de430c561b0ee9ae29a (diff)
downloadgitlab-ce-80b8fe24a18151eae7262589432a3158354c7273.tar.gz
Fix small typos
-rw-r--r--doc/administration/raketasks/check.md6
-rw-r--r--lib/tasks/gitlab/uploads.rake2
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/administration/raketasks/check.md b/doc/administration/raketasks/check.md
index 7e452ae503d..94d71e32ef9 100644
--- a/doc/administration/raketasks/check.md
+++ b/doc/administration/raketasks/check.md
@@ -79,10 +79,10 @@ Example output:
## Uploaded Files Integrity
The uploads check Rake task will loop through all uploads in the database
-and runs two checks to determine the integrity of each file:
+and run two checks to determine the integrity of each file:
-1. Check if the file exist in the file system.
-1. Check if the checksum of the file in the file system matches the checksum in the database.
+1. Check if the file exist on the file system.
+1. Check if the checksum of the file on the file system matches the checksum in the database.
**Omnibus Installation**
diff --git a/lib/tasks/gitlab/uploads.rake b/lib/tasks/gitlab/uploads.rake
index fd5ef78103b..df31567ce64 100644
--- a/lib/tasks/gitlab/uploads.rake
+++ b/lib/tasks/gitlab/uploads.rake
@@ -2,7 +2,7 @@ namespace :gitlab do
namespace :uploads do
desc 'GitLab | Uploads | Check integrity of uploaded files'
task check: :environment do
- puts 'Starting checking integrity of uploaded files'
+ puts 'Checking integrity of uploaded files'
uploads_batches do |batch|
batch.each do |upload|