diff options
author | Stefan Weil <sw@weilnetz.de> | 2016-04-07 19:51:27 +0200 |
---|---|---|
committer | Stefan Weil <sw@weilnetz.de> | 2016-04-07 19:51:27 +0200 |
commit | b1a856d7b7e184241fcd862842d4aecddd9a00ec (patch) | |
tree | dad8a4f1c34e1c97ead9cd50a7c2f44469cb536e /lib/base.php | |
parent | 6eefea1bb65897b0a1cf8668b15998a12ae197b9 (diff) | |
download | nextcloud-server-b1a856d7b7e184241fcd862842d4aecddd9a00ec.tar.gz nextcloud-server-b1a856d7b7e184241fcd862842d4aecddd9a00ec.zip |
lib: Fix typos (found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/base.php b/lib/base.php index a76edb1192a..610ee325550 100644 --- a/lib/base.php +++ b/lib/base.php @@ -417,7 +417,7 @@ class OC { $session = $cryptoWrapper->wrapSession($session); self::$server->setSession($session); - // if session cant be started break with http 500 error + // if session can't be started break with http 500 error } catch (Exception $e) { \OCP\Util::logException('base', $e); //show the user a detailed error page @@ -788,7 +788,7 @@ class OC { protected static function registerAutoloaderCache() { // The class loader takes an optional low-latency cache, which MUST be // namespaced. The instanceid is used for namespacing, but might be - // unavailable at this point. Futhermore, it might not be possible to + // unavailable at this point. Furthermore, it might not be possible to // generate an instanceid via \OC_Util::getInstanceId() because the // config file may not be writable. As such, we only register a class // loader cache if instanceid is available without trying to create one. |