summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2015-09-21 23:04:25 +0545
committerPhil Davis <phil.davis@inf.org>2015-09-21 23:04:25 +0545
commita165710e99edae933b571b475ec13e72b2e89428 (patch)
treea8889b6e766d2d68473abe979f882b9eb76a2928 /lib/base.php
parentc5f0ad49b0921cba7285cf134960d72c0034c141 (diff)
downloadnextcloud-server-a165710e99edae933b571b475ec13e72b2e89428.tar.gz
nextcloud-server-a165710e99edae933b571b475ec13e72b2e89428.zip
Minor text typos
that I noticed while looking at some code.
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/base.php b/lib/base.php
index f5ba05ded74..3624a3fbaf9 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -228,7 +228,7 @@ class OC {
public static function checkConfig() {
$l = \OC::$server->getL10N('lib');
- // Create config in case it does not already exists
+ // Create config if it does not already exist
$configFilePath = self::$configDir .'/config.php';
if(!file_exists($configFilePath)) {
@touch($configFilePath);
@@ -314,7 +314,7 @@ class OC {
}
/**
- * check if the instance needs to preform an upgrade
+ * check if the instance needs to perform an upgrade
*
* @return bool
* @deprecated use \OCP\Util::needUpgrade() instead
@@ -567,7 +567,7 @@ class OC {
//try to configure php to enable big file uploads.
//this doesn´t work always depending on the webserver and php configuration.
- //Let´s try to overwrite some defaults anyways
+ //Let´s try to overwrite some defaults anyway
//try to set the maximum execution time to 60min
@set_time_limit(3600);