Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2015-09-21 20:19:25 +0300
committerPhil Davis <phil.davis@inf.org>2015-09-21 20:19:25 +0300
commita165710e99edae933b571b475ec13e72b2e89428 (patch)
treea8889b6e766d2d68473abe979f882b9eb76a2928 /cron.php
parentc5f0ad49b0921cba7285cf134960d72c0034c141 (diff)
Minor text typos
that I noticed while looking at some code.
Diffstat (limited to 'cron.php')
-rw-r--r--cron.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/cron.php b/cron.php
index ed2a20a1e1f..e83e37b3471 100644
--- a/cron.php
+++ b/cron.php
@@ -113,7 +113,7 @@ try {
\OCP\BackgroundJob::setExecutionType('cron');
}
- // open the file and try to lock if. If it is not locked, the background
+ // open the file and try to lock it. If it is not locked, the background
// job can be executed, otherwise another instance is already running
$fp = fopen($lockFile, 'w');
$isLocked = flock($fp, LOCK_EX|LOCK_NB, $wouldBlock);