summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-08-08 15:08:58 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-08-08 15:08:58 +0200
commitc458e785a1612e04b54bb9fbb0f22c0852758fb0 (patch)
treeed921a00501c6a773a91ade6f3dfd8ab2d389973 /apps/files_encryption/lib
parent512f98cac9d4cf2993667e2347ae36c29a0f53e0 (diff)
downloadnextcloud-server-c458e785a1612e04b54bb9fbb0f22c0852758fb0.tar.gz
nextcloud-server-c458e785a1612e04b54bb9fbb0f22c0852758fb0.zip
fixing typos and PHPDoc
Diffstat (limited to 'apps/files_encryption/lib')
-rwxr-xr-xapps/files_encryption/lib/crypt.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php
index 95ea3a888be..99c11d0c5fb 100755
--- a/apps/files_encryption/lib/crypt.php
+++ b/apps/files_encryption/lib/crypt.php
@@ -25,7 +25,6 @@
namespace OCA\Encryption;
-//require_once '../3rdparty/Crypt_Blowfish/Blowfish.php';
require_once realpath(dirname(__FILE__) . '/../3rdparty/Crypt_Blowfish/Blowfish.php');
/**
@@ -514,11 +513,11 @@ class Crypt {
}
/**
- * @brief Get the blowfish encryption handeler for a key
+ * @brief Get the blowfish encryption handler for a key
* @param $key string (optional)
* @return \Crypt_Blowfish blowfish object
*
- * if the key is left out, the default handeler will be used
+ * if the key is left out, the default handler will be used
*/
private static function getBlowfish($key = '') {
@@ -571,4 +570,4 @@ class Crypt {
}
}
-} \ No newline at end of file
+}