diff options
author | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2022-07-28 09:17:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-28 09:17:48 +0200 |
commit | 472f4cad47f832ac0807ac3c4aa33d60a5bcbf31 (patch) | |
tree | d39a998f561fd997da4ccb22b39b3dd2e21e8b82 /lib/private/Files/Cache/Cache.php | |
parent | 97e88f34e9526f9731a33b893bb69faedbbb87ec (diff) | |
parent | 368f83095d443c28b0d90d2308549349cc28dd05 (diff) | |
download | nextcloud-server-472f4cad47f832ac0807ac3c4aa33d60a5bcbf31.tar.gz nextcloud-server-472f4cad47f832ac0807ac3c4aa33d60a5bcbf31.zip |
Merge pull request #33380 from luzpaz/fix/lib-private-typos
Fix typos in lib/private subdirectory
Diffstat (limited to 'lib/private/Files/Cache/Cache.php')
-rw-r--r-- | lib/private/Files/Cache/Cache.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Files/Cache/Cache.php b/lib/private/Files/Cache/Cache.php index 33a07e9b9e5..110e55bcc6c 100644 --- a/lib/private/Files/Cache/Cache.php +++ b/lib/private/Files/Cache/Cache.php @@ -64,7 +64,7 @@ use Psr\Log\LoggerInterface; /** * Metadata cache for a storage * - * The cache stores the metadata for all files and folders in a storage and is kept up to date trough the following mechanisms: + * The cache stores the metadata for all files and folders in a storage and is kept up to date through the following mechanisms: * * - Scanner: scans the storage and updates the cache where needed * - Watcher: checks for changes made to the filesystem outside of the Nextcloud instance and rescans files and folder when a change is detected @@ -582,7 +582,7 @@ class Cache implements ICache { $parentIds = [$entry->getId()]; $queue = [$entry->getId()]; - // we walk depth first trough the file tree, removing all filecache_extended attributes while we walk + // we walk depth first through the file tree, removing all filecache_extended attributes while we walk // and collecting all folder ids to later use to delete the filecache entries while ($entryId = array_pop($queue)) { $children = $this->getFolderContentsById($entryId); |