diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-09-06 10:28:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 10:28:26 +0200 |
commit | ba99f1ca0ffd128c1cd3d13c0a5735fe14bc12e5 (patch) | |
tree | e417a60ccd830738dae1a6adc6b778fb0c4548ab /apps/files/lib | |
parent | 405edfa90c851937af13e26a82754310ded0072a (diff) | |
parent | 9d26671f05275055619960a66981201ed660bdd2 (diff) | |
download | nextcloud-server-ba99f1ca0ffd128c1cd3d13c0a5735fe14bc12e5.tar.gz nextcloud-server-ba99f1ca0ffd128c1cd3d13c0a5735fe14bc12e5.zip |
Merge pull request #33895 from nextcloud/fix/fix-apps-typos
Fix typos in apps/ subdirectory
Diffstat (limited to 'apps/files/lib')
-rw-r--r-- | apps/files/lib/Command/RepairTree.php | 2 | ||||
-rw-r--r-- | apps/files/lib/Controller/ApiController.php | 2 | ||||
-rw-r--r-- | apps/files/lib/Notification/Notifier.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/lib/Command/RepairTree.php b/apps/files/lib/Command/RepairTree.php index 4fe64ef0edf..521fe3d6a4a 100644 --- a/apps/files/lib/Command/RepairTree.php +++ b/apps/files/lib/Command/RepairTree.php @@ -68,7 +68,7 @@ class RepairTree extends Command { ->where($query->expr()->eq('fileid', $query->createParameter('fileid'))); foreach ($rows as $row) { - $output->writeln("Path of file {$row['fileid']} is {$row['path']} but should be {$row['parent_path']}/{$row['name']} based on it's parent", OutputInterface::VERBOSITY_VERBOSE); + $output->writeln("Path of file {$row['fileid']} is {$row['path']} but should be {$row['parent_path']}/{$row['name']} based on its parent", OutputInterface::VERBOSITY_VERBOSE); if ($fix) { $fileId = $this->getFileId((int)$row['parent_storage'], $row['parent_path'] . '/' . $row['name']); diff --git a/apps/files/lib/Controller/ApiController.php b/apps/files/lib/Controller/ApiController.php index 45c7466e0c2..e29e81d6296 100644 --- a/apps/files/lib/Controller/ApiController.php +++ b/apps/files/lib/Controller/ApiController.php @@ -247,7 +247,7 @@ class ApiController extends Controller { } /** - * Returns a list of recently modifed files. + * Returns a list of recently modified files. * * @NoAdminRequired * diff --git a/apps/files/lib/Notification/Notifier.php b/apps/files/lib/Notification/Notifier.php index 8f885a995f9..1a7a3726229 100644 --- a/apps/files/lib/Notification/Notifier.php +++ b/apps/files/lib/Notification/Notifier.php @@ -278,7 +278,7 @@ class Notifier implements INotifier, IDismissableNotifier { throw new \InvalidArgumentException('Unhandled app'); } - // TODO: This should all be moved to a service that also the transferownershipContoller uses. + // TODO: This should all be moved to a service that also the transferownershipController uses. try { $transferOwnership = $this->mapper->getById((int)$notification->getObjectId()); } catch (DoesNotExistException $e) { |