Fix wrong word in comment

This commit is contained in:
Bart Visscher 2013-01-18 16:38:36 +01:00
parent d2c5f9bec7
commit 9ffd4197ae
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ class OC_FileCache{
public static function increaseSize($path, $sizeDiff, $root=false) {
if($sizeDiff==0) return;
$item = OC_FileCache_Cached::get($path);
//stop walking up the filetree if we hit a non-folder or reached to root folder
//stop walking up the filetree if we hit a non-folder or reached the root folder
if($path == '/' || $path=='' || $item['mimetype'] !== 'httpd/unix-directory') {
return;
}