From 9ffd4197aeee96bb457d5345ba0e87a635f21f1c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 18 Jan 2013 16:38:36 +0100 Subject: [PATCH] Fix wrong word in comment --- lib/filecache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/filecache.php b/lib/filecache.php index bde70757d31..2f4a6daf216 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -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; }